Skip to content

Instantly share code, notes, and snippets.

View bryceandress's full-sized avatar

Bryce Andress bryceandress

View GitHub Profile
1375421247 | So, you want to work in security? – Free Code Camp | https://medium.freecodecamp.com/so-you-want-to-work-in-security-bc6c10157d23?gi=3319f2f9d171
1392467994 | HackedThat: Breaking in to a hardened server via the back door | http://polynome.co/infosec/inversoft/elasticsearch/linode/penetration-testing/2016/08/16/hack-that-inversoft.html
1394166342 | So you want to work in security (but are too lazy to read Parisa's excellent essay) | https://lcamtuf.blogspot.ch/2016/08/so-you-want-to-work-in-security-but-are.html?m=1
1386106165 | Reverse Engineering x86 101 | http://howto.hackallthethings.com/2016/08/reverse-engineering-x86-101.html
1387765922 | | http://darksim905.com/~sim/reverse-engineering-notes.txt
1390056017 | | https://theitgeekchronicles.files.wordpress.com/2012/05/scapyguide1.pdf
112767402 | Security News | http://www.morningstarsecurity.com/news
1390252630 | "A small summary about the @SpamAndHex @defcon CTF adventure. Man vs. machine in security. https | https://twitter.com/defcon/sta
@bryceandress
bryceandress / powmod homework
Last active September 1, 2016 23:26
powmod homework
package main
import "fmt"
func simpPowMod(base, exp, mod int) int {
var val int = 1
for i:=0; i < exp; i++ {
val = val * base
}
return val % mod
@bryceandress
bryceandress / schensted.dat
Last active April 12, 2016 13:44
schensted.dat problem for sctf 2016
#!/usr/bin/env python
#Open file and read file
f = open('schensted.dat')
numbers = f.read()
checked = 0
unchecked = 1
current = str(numbers[0])
longest = ""
@bryceandress
bryceandress / CTF Sources
Last active March 8, 2016 01:56
CTF Sources
https://www.endgame.com/blog/how-get-started-ctf
captf.com
https://malwarereversing.wordpress.com/2011/01/20/where-to-start-in-reverse-engineering/
http://resources.infosecinstitute.com/tools-of-trade-and-resources-to-prepare-in-a-hacker-ctf-competition-or-challenge/
https://www.rootcon.org/xml/archives/events
https://github.com/apsdehal/awesome-ctf
http://ctfs.github.io/resources/
https://github.com/xairy/mipt-ctf
ctftime.org
pwntools.com
+----------------------------------------------------------------------------------------------+----------+
| input | COUNT(*) |
+----------------------------------------------------------------------------------------------+----------+
| cd / | 1 |
| cd home/ | 1 |
| cd richard/ | 1 |
| ls -la | 1 |
| ext | 1 |
| rm > | 1 |
| pwd
+------------------------------+----------+
| password | COUNT(*) |
+------------------------------+----------+
| office | 1 |
| liferay | 1 |
| http | 1 |
| 369852 | 1 |
| qazwsx123 | 1 |
| oracle1 | 1 |
| test6 | 1 |
+---------------+----------------+----------+
| username | password | COUNT(*) |
+---------------+----------------+----------+
| csgo | csgo | 1 |
| johnv | johnv | 1 |
| dani | dani | 1 |
| jenkins | jenkins | 1 |
| cvs | cvs | 1 |
| scan | scan | 1 |
| yves | yves | 1 |
+---------------+----------+
| username | COUNT(*) |
+---------------+----------+
| fabien | 1 |
| svsg | 1 |
| william | 1 |
| lwh | 1 |
| demo3 | 1 |
| postfix | 1 |
| thomas | 1 |