This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use LWP::Simple; | |
my @lines=split("\n",get("http://myip.dk")); | |
foreach my $line (@lines) | |
{ | |
if($line =~ />([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)</) | |
{ | |
print "found : $1\nin line $line\n"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import System.Directory | |
import System.IO | |
import System.Environment | |
import Network.HTTP | |
import Network.URI (parseURI) | |
import Text.Regex.Posix | |
import Data.Maybe | |
import Control.Monad -- when | |
import qualified Data.ByteString as B | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Fetch all RPKI repos from RIR | |
echo "Fetching AFRINIC ..." | |
rsync -r -a -v --delete rsync://rpki.afrinic.net/repository afrinic/repository | |
rsync -r -a -v --delete rsync://rpki.afrinic.net/member_repository afrinic/member_repository | |
echo "Fetching APNIC ..." | |
rsync -r -a -v --delete rsync://rpki.apnic.net/repository apnic/repository |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for var in "$@"; do python -c "from geopy import geocoders as gc; from sys import ar gv;_,lat = gc.GoogleV3().geocode(' '.join(argv[1:])); print lat[0],lat[1]" $(whois $ (nslookup $var|grep Address|sed -n 2p| cut -f 2|sed 's/#.*//') | grep 'City\|State' | awk '{print $2}' | xargs -n 2) ; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
wget --output-document=/dev/null http://speedtest.wdc01.softlayer.com/downloads/test500.zip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
open http://maps.google.com/?ll=$(python -c "from geopy import geocoders as gc; from sys import argv;_,lat = gc.GoogleV3().geocode(' '.join(argv[1:])); print '%s,%s'%(lat[0],lat[1])" $@) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package util; | |
import java.io.BufferedReader; | |
import java.io.InputStreamReader; | |
/** | |
* Created by dan on 2/4/14. | |
*/ | |
public class ProgramCaller { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html, body, #map-canvas { | |
height: 100%; | |
margin: 0px; | |
padding: 0px | |
} | |
.nicebox { | |
position: absolute; | |
text-align: left; | |
font-family: "Roboto", "Arial", sans-serif; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Graphics</key> | |
<dict> | |
<key>InjectEDID</key> | |
<true/> | |
<key>Inject</key> | |
<dict> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
==Phrack Inc.== | |
Volume One, Issue 7, Phile 3 of 10 | |
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | |
The following was written shortly after my arrest... | |
\/\The Conscience of a Hacker/\/ | |
by |
OlderNewer