├── .gitignore ├── README.mkd ├── anti-burl ├── .gitignore ├── main.go └── readme.md ├── asm ├── hello ├── hello.asm └── hello.o ├── assetfinder ├── .gitignore ├── README.md ├── certspotter.go ├── crtsh.go ├── facebook.go ├── hackertarget.go ├── main.go ├── threatcrowd.go ├── virustotal.go └── wayback.go ├── b64d ├── .gitignore ├── README.md └── main.go ├── bbdb ├── .gitignore ├── domains.go └── main.go ├── bbinit ├── .gitignore ├── main.go └── main_test.go ├── check-cnames └── main.go ├── chromeredir ├── .gitignore ├── checkredir.js ├── package-lock.json └── package.json ├── comb ├── .gitignore ├── README.mkd └── main.go ├── compres ├── .gitignore ├── go.mod ├── go.sum └── main.go ├── concurl ├── .gitignore ├── README.mkd ├── main.go └── ratelimit.go ├── cors-blimey ├── .gitignore ├── README.mkd └── main.go ├── domaintree ├── .gitignore ├── go.mod ├── go.sum └── main.go ├── ejs-example ├── .gitignore ├── generate-hashes.js ├── main.js ├── mongo-await.js ├── package-lock.json ├── package.json ├── static │ └── moving-pictures.jpg └── views │ ├── error.ejs │ ├── header.ejs │ ├── login.ejs │ ├── people.ejs │ ├── register.ejs │ └── users.ejs ├── ettu ├── .gitignore ├── README.mkd └── main.go ├── fff ├── .gitignore ├── README.mkd └── main.go ├── filter-resolved ├── .gitignore ├── README.mkd └── main.go ├── get-title ├── .gitignore ├── README.mkd ├── main.go └── urls.txt ├── geteventlisteners ├── .gitignore └── main.go ├── ghtool ├── .gitignore ├── go.mod ├── go.sum └── main.go ├── gittrees ├── .gitignore ├── README.mkd └── main.go ├── goreqs ├── .gitignore ├── full_test.go ├── main.go ├── request.go └── response.go ├── gron2shell ├── identifier.go ├── main.go ├── statements.go ├── token.go └── ungron.go ├── gronval ├── identifier.go ├── main.go ├── statements.go ├── token.go └── ungron.go ├── html-comments ├── .gitignore ├── README.mkd └── main.go ├── html-tool ├── .gitignore ├── README.md ├── go.mod ├── go.sum └── main.go ├── htmlattribs ├── .gitignore ├── README.mkd └── main.go ├── inscope ├── .gitignore ├── .scope ├── README.md ├── main.go ├── main_test.go └── testinput ├── jsb-inplace ├── .gitignore └── main.go ├── jsstrings ├── .gitignore ├── README.mkd ├── index.js ├── package-lock.json ├── package.json └── testdata │ ├── broken.js │ ├── example.js │ └── simple.js ├── kxss ├── .gitignore ├── README.mkd ├── cmd │ └── testserver │ │ ├── .gitignore │ │ └── main.go ├── main.go └── main_test.go ├── lab ├── .gitignore ├── README.mkd └── wordpress │ ├── Dockerfile │ ├── apache.conf │ ├── configure-mysql.sh │ ├── index.php │ ├── init-local.sh │ ├── notes │ ├── run-apache.ini │ ├── run-local.sh │ ├── run-mysql.ini │ ├── run.sh │ ├── vhost.conf │ ├── wordpress.sql │ └── wp-config.php ├── lsinteresting ├── .gitignore └── main.go ├── manyreqs ├── .gitignore └── main.go ├── mirror ├── .gitignore ├── README.mkd └── main.go ├── paster └── main.go ├── perms ├── .gitignore ├── README.mkd └── main.go ├── phpreqs ├── main.php ├── rawrequest.php ├── request.php └── response.php ├── pupjs ├── .gitignore ├── main.js └── package.json ├── qsreplace ├── .gitignore ├── README.mkd └── main.go ├── remove-subdomains ├── getsubs.php ├── stripsubs.php └── suffixes.txt ├── sectxt-parser ├── example.txt └── parse.php ├── strip-wildcards ├── .gitignore └── main.go ├── structured-scopes └── fetch.php ├── subs ├── domains ├── main.go └── subdomains ├── tojson ├── README.md └── main.go ├── tok ├── .gitignore └── main.go ├── unfurl ├── .gitignore ├── README.mkd ├── format_test.go └── main.go ├── unimap └── index.php ├── unisub ├── .gitignore ├── README.md ├── main.go ├── scripts │ ├── map │ └── proc.php └── translations.go ├── uresolve └── main.go ├── urinteresting ├── .gitignore ├── README.mkd └── main.go ├── urlteamdl ├── extract.sh ├── main.go └── search.sh ├── waybackurls ├── README.mkd └── main.go └── webpaste ├── .gitignore ├── README.md ├── extension ├── README.mkd ├── background.js ├── manifest.json ├── options.html ├── options.js ├── popup.html ├── popup.js ├── snippets.js └── snips ├── go.mod └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | -------------------------------------------------------------------------------- /README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/README.mkd -------------------------------------------------------------------------------- /anti-burl/.gitignore: -------------------------------------------------------------------------------- 1 | anti-burl 2 | urls 3 | *.swp 4 | -------------------------------------------------------------------------------- /anti-burl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/anti-burl/main.go -------------------------------------------------------------------------------- /anti-burl/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/anti-burl/readme.md -------------------------------------------------------------------------------- /asm/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/asm/hello -------------------------------------------------------------------------------- /asm/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/asm/hello.asm -------------------------------------------------------------------------------- /asm/hello.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/asm/hello.o -------------------------------------------------------------------------------- /assetfinder/.gitignore: -------------------------------------------------------------------------------- 1 | assetfinder 2 | -------------------------------------------------------------------------------- /assetfinder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/assetfinder/README.md -------------------------------------------------------------------------------- /assetfinder/certspotter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/assetfinder/certspotter.go -------------------------------------------------------------------------------- /assetfinder/crtsh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/assetfinder/crtsh.go -------------------------------------------------------------------------------- /assetfinder/facebook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/assetfinder/facebook.go -------------------------------------------------------------------------------- /assetfinder/hackertarget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/assetfinder/hackertarget.go -------------------------------------------------------------------------------- /assetfinder/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/assetfinder/main.go -------------------------------------------------------------------------------- /assetfinder/threatcrowd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/assetfinder/threatcrowd.go -------------------------------------------------------------------------------- /assetfinder/virustotal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/assetfinder/virustotal.go -------------------------------------------------------------------------------- /assetfinder/wayback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/assetfinder/wayback.go -------------------------------------------------------------------------------- /b64d/.gitignore: -------------------------------------------------------------------------------- 1 | testfile 2 | b64d 3 | *.sw* 4 | -------------------------------------------------------------------------------- /b64d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/b64d/README.md -------------------------------------------------------------------------------- /b64d/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/b64d/main.go -------------------------------------------------------------------------------- /bbdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/bbdb/.gitignore -------------------------------------------------------------------------------- /bbdb/domains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/bbdb/domains.go -------------------------------------------------------------------------------- /bbdb/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/bbdb/main.go -------------------------------------------------------------------------------- /bbinit/.gitignore: -------------------------------------------------------------------------------- 1 | .scope 2 | wildcards 3 | domains 4 | bbinit 5 | *.sw* 6 | -------------------------------------------------------------------------------- /bbinit/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/bbinit/main.go -------------------------------------------------------------------------------- /bbinit/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/bbinit/main_test.go -------------------------------------------------------------------------------- /check-cnames/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/check-cnames/main.go -------------------------------------------------------------------------------- /chromeredir/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /chromeredir/checkredir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/chromeredir/checkredir.js -------------------------------------------------------------------------------- /chromeredir/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/chromeredir/package-lock.json -------------------------------------------------------------------------------- /chromeredir/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/chromeredir/package.json -------------------------------------------------------------------------------- /comb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/comb/.gitignore -------------------------------------------------------------------------------- /comb/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/comb/README.mkd -------------------------------------------------------------------------------- /comb/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/comb/main.go -------------------------------------------------------------------------------- /compres/.gitignore: -------------------------------------------------------------------------------- 1 | compres 2 | -------------------------------------------------------------------------------- /compres/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/compres/go.mod -------------------------------------------------------------------------------- /compres/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/compres/go.sum -------------------------------------------------------------------------------- /compres/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/compres/main.go -------------------------------------------------------------------------------- /concurl/.gitignore: -------------------------------------------------------------------------------- 1 | concurl 2 | out 3 | -------------------------------------------------------------------------------- /concurl/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/concurl/README.mkd -------------------------------------------------------------------------------- /concurl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/concurl/main.go -------------------------------------------------------------------------------- /concurl/ratelimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/concurl/ratelimit.go -------------------------------------------------------------------------------- /cors-blimey/.gitignore: -------------------------------------------------------------------------------- 1 | cores-blimey 2 | *.sw* 3 | -------------------------------------------------------------------------------- /cors-blimey/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/cors-blimey/README.mkd -------------------------------------------------------------------------------- /cors-blimey/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/cors-blimey/main.go -------------------------------------------------------------------------------- /domaintree/.gitignore: -------------------------------------------------------------------------------- 1 | testdata 2 | domaintree 3 | -------------------------------------------------------------------------------- /domaintree/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/domaintree/go.mod -------------------------------------------------------------------------------- /domaintree/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/domaintree/go.sum -------------------------------------------------------------------------------- /domaintree/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/domaintree/main.go -------------------------------------------------------------------------------- /ejs-example/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dbdata 3 | -------------------------------------------------------------------------------- /ejs-example/generate-hashes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/ejs-example/generate-hashes.js -------------------------------------------------------------------------------- /ejs-example/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/ejs-example/main.js -------------------------------------------------------------------------------- /ejs-example/mongo-await.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/ejs-example/mongo-await.js -------------------------------------------------------------------------------- /ejs-example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/ejs-example/package-lock.json -------------------------------------------------------------------------------- /ejs-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/ejs-example/package.json -------------------------------------------------------------------------------- /ejs-example/static/moving-pictures.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/ejs-example/static/moving-pictures.jpg -------------------------------------------------------------------------------- /ejs-example/views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/ejs-example/views/error.ejs -------------------------------------------------------------------------------- /ejs-example/views/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/ejs-example/views/header.ejs -------------------------------------------------------------------------------- /ejs-example/views/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/ejs-example/views/login.ejs -------------------------------------------------------------------------------- /ejs-example/views/people.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/ejs-example/views/people.ejs -------------------------------------------------------------------------------- /ejs-example/views/register.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/ejs-example/views/register.ejs -------------------------------------------------------------------------------- /ejs-example/views/users.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/ejs-example/views/users.ejs -------------------------------------------------------------------------------- /ettu/.gitignore: -------------------------------------------------------------------------------- 1 | ettu 2 | testfile 3 | *.sw* 4 | -------------------------------------------------------------------------------- /ettu/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/ettu/README.mkd -------------------------------------------------------------------------------- /ettu/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/ettu/main.go -------------------------------------------------------------------------------- /fff/.gitignore: -------------------------------------------------------------------------------- 1 | fff 2 | urls 3 | *.sw* 4 | hosts 5 | index 6 | -------------------------------------------------------------------------------- /fff/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/fff/README.mkd -------------------------------------------------------------------------------- /fff/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/fff/main.go -------------------------------------------------------------------------------- /filter-resolved/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/filter-resolved/.gitignore -------------------------------------------------------------------------------- /filter-resolved/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/filter-resolved/README.mkd -------------------------------------------------------------------------------- /filter-resolved/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/filter-resolved/main.go -------------------------------------------------------------------------------- /get-title/.gitignore: -------------------------------------------------------------------------------- 1 | get-title 2 | -------------------------------------------------------------------------------- /get-title/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/get-title/README.mkd -------------------------------------------------------------------------------- /get-title/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/get-title/main.go -------------------------------------------------------------------------------- /get-title/urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/get-title/urls.txt -------------------------------------------------------------------------------- /geteventlisteners/.gitignore: -------------------------------------------------------------------------------- 1 | geteventlisteners 2 | -------------------------------------------------------------------------------- /geteventlisteners/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/geteventlisteners/main.go -------------------------------------------------------------------------------- /ghtool/.gitignore: -------------------------------------------------------------------------------- 1 | ghtool 2 | -------------------------------------------------------------------------------- /ghtool/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/ghtool/go.mod -------------------------------------------------------------------------------- /ghtool/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/ghtool/go.sum -------------------------------------------------------------------------------- /ghtool/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/ghtool/main.go -------------------------------------------------------------------------------- /gittrees/.gitignore: -------------------------------------------------------------------------------- 1 | gittrees 2 | -------------------------------------------------------------------------------- /gittrees/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/gittrees/README.mkd -------------------------------------------------------------------------------- /gittrees/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/gittrees/main.go -------------------------------------------------------------------------------- /goreqs/.gitignore: -------------------------------------------------------------------------------- 1 | goreqs 2 | -------------------------------------------------------------------------------- /goreqs/full_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/goreqs/full_test.go -------------------------------------------------------------------------------- /goreqs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/goreqs/main.go -------------------------------------------------------------------------------- /goreqs/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/goreqs/request.go -------------------------------------------------------------------------------- /goreqs/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/goreqs/response.go -------------------------------------------------------------------------------- /gron2shell/identifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/gron2shell/identifier.go -------------------------------------------------------------------------------- /gron2shell/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/gron2shell/main.go -------------------------------------------------------------------------------- /gron2shell/statements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/gron2shell/statements.go -------------------------------------------------------------------------------- /gron2shell/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/gron2shell/token.go -------------------------------------------------------------------------------- /gron2shell/ungron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/gron2shell/ungron.go -------------------------------------------------------------------------------- /gronval/identifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/gronval/identifier.go -------------------------------------------------------------------------------- /gronval/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/gronval/main.go -------------------------------------------------------------------------------- /gronval/statements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/gronval/statements.go -------------------------------------------------------------------------------- /gronval/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/gronval/token.go -------------------------------------------------------------------------------- /gronval/ungron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/gronval/ungron.go -------------------------------------------------------------------------------- /html-comments/.gitignore: -------------------------------------------------------------------------------- 1 | html-comments 2 | -------------------------------------------------------------------------------- /html-comments/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/html-comments/README.mkd -------------------------------------------------------------------------------- /html-comments/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/html-comments/main.go -------------------------------------------------------------------------------- /html-tool/.gitignore: -------------------------------------------------------------------------------- 1 | html-tool 2 | -------------------------------------------------------------------------------- /html-tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/html-tool/README.md -------------------------------------------------------------------------------- /html-tool/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/html-tool/go.mod -------------------------------------------------------------------------------- /html-tool/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/html-tool/go.sum -------------------------------------------------------------------------------- /html-tool/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/html-tool/main.go -------------------------------------------------------------------------------- /htmlattribs/.gitignore: -------------------------------------------------------------------------------- 1 | htmlattribs 2 | -------------------------------------------------------------------------------- /htmlattribs/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/htmlattribs/README.mkd -------------------------------------------------------------------------------- /htmlattribs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/htmlattribs/main.go -------------------------------------------------------------------------------- /inscope/.gitignore: -------------------------------------------------------------------------------- 1 | inscope 2 | *.sw* 3 | -------------------------------------------------------------------------------- /inscope/.scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/inscope/.scope -------------------------------------------------------------------------------- /inscope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/inscope/README.md -------------------------------------------------------------------------------- /inscope/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/inscope/main.go -------------------------------------------------------------------------------- /inscope/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/inscope/main_test.go -------------------------------------------------------------------------------- /inscope/testinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/inscope/testinput -------------------------------------------------------------------------------- /jsb-inplace/.gitignore: -------------------------------------------------------------------------------- 1 | jsb-inplace 2 | -------------------------------------------------------------------------------- /jsb-inplace/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/jsb-inplace/main.go -------------------------------------------------------------------------------- /jsstrings/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /jsstrings/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/jsstrings/README.mkd -------------------------------------------------------------------------------- /jsstrings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/jsstrings/index.js -------------------------------------------------------------------------------- /jsstrings/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/jsstrings/package-lock.json -------------------------------------------------------------------------------- /jsstrings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/jsstrings/package.json -------------------------------------------------------------------------------- /jsstrings/testdata/broken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/jsstrings/testdata/broken.js -------------------------------------------------------------------------------- /jsstrings/testdata/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/jsstrings/testdata/example.js -------------------------------------------------------------------------------- /jsstrings/testdata/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/jsstrings/testdata/simple.js -------------------------------------------------------------------------------- /kxss/.gitignore: -------------------------------------------------------------------------------- 1 | kxss 2 | *.sw* 3 | -------------------------------------------------------------------------------- /kxss/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/kxss/README.mkd -------------------------------------------------------------------------------- /kxss/cmd/testserver/.gitignore: -------------------------------------------------------------------------------- 1 | testserver 2 | -------------------------------------------------------------------------------- /kxss/cmd/testserver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/kxss/cmd/testserver/main.go -------------------------------------------------------------------------------- /kxss/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/kxss/main.go -------------------------------------------------------------------------------- /kxss/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/kxss/main_test.go -------------------------------------------------------------------------------- /lab/.gitignore: -------------------------------------------------------------------------------- 1 | */local/* 2 | -------------------------------------------------------------------------------- /lab/README.mkd: -------------------------------------------------------------------------------- 1 | Dockerfiles for running a software lab 2 | -------------------------------------------------------------------------------- /lab/wordpress/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/lab/wordpress/Dockerfile -------------------------------------------------------------------------------- /lab/wordpress/apache.conf: -------------------------------------------------------------------------------- 1 | ServerName appcontainer 2 | Listen 8080 3 | 4 | LogLevel warn 5 | -------------------------------------------------------------------------------- /lab/wordpress/configure-mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/hacks/HEAD/lab/wordpress/configure-mysql.sh -------------------------------------------------------------------------------- /lab/wordpress/index.php: -------------------------------------------------------------------------------- 1 |