- Recon
- Find vuln
- Exploit
- Document it
Unicornscans in cli, nmap in msfconsole to help store loot in database.
| #!/usr/bin/perl | |
| # Converts OPML to org-mode | |
| # perl convert.pl file.opml > file.org | |
| # Looking to convert the Feedly OMPL feed to something I can use with elfeed-org I ran across the code here: https://gist.github.com/alandipert/675767/aa45f49bf6f6a2038d0b77b24d0e079c0994edc5 | |
| # | |
| # I modified it a little bit to be more to the point of elfeed-org | |
| use XML::Parser; | |
| binmode STDOUT, ":utf8"; |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| $start = strtotime('10:31'); | |
| $end = strtotime('15:23'); | |
| echo "Time spent in seconds: " . ($end - $start); | |
| echo " Time spent in minutes: " . (($end - $start) / 60); | |
| echo " Time spent in hours: " . (($end - $start) / (60*60)); | |
| ?> |