This file contains 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
+---------------+----------+ | |
| username | COUNT(*) | | |
+---------------+----------+ | |
| fabien | 1 | | |
| svsg | 1 | | |
| william | 1 | | |
| lwh | 1 | | |
| demo3 | 1 | | |
| postfix | 1 | | |
| thomas | 1 | |
This file contains 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
+---------------+----------------+----------+ | |
| username | password | COUNT(*) | | |
+---------------+----------------+----------+ | |
| csgo | csgo | 1 | | |
| johnv | johnv | 1 | | |
| dani | dani | 1 | | |
| jenkins | jenkins | 1 | | |
| cvs | cvs | 1 | | |
| scan | scan | 1 | | |
| yves | yves | 1 | |
This file contains 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
+------------------------------+----------+ | |
| password | COUNT(*) | | |
+------------------------------+----------+ | |
| office | 1 | | |
| liferay | 1 | | |
| http | 1 | | |
| 369852 | 1 | | |
| qazwsx123 | 1 | | |
| oracle1 | 1 | | |
| test6 | 1 | |
This file contains 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
+----------------------------------------------------------------------------------------------+----------+ | |
| input | COUNT(*) | | |
+----------------------------------------------------------------------------------------------+----------+ | |
| cd / | 1 | | |
| cd home/ | 1 | | |
| cd richard/ | 1 | | |
| ls -la | 1 | | |
| ext | 1 | | |
| rm > | 1 | | |
| pwd |
This file contains 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
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 |
This file contains 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/env python | |
#Open file and read file | |
f = open('schensted.dat') | |
numbers = f.read() | |
checked = 0 | |
unchecked = 1 | |
current = str(numbers[0]) | |
longest = "" |
This file contains 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 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 |
This file contains 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
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 |