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
#def _tokenize(code, comments, comment_strings, containers): | |
# """ | |
# tokenizes sources code to find hardcoded strings | |
# returns list of hardcoded strings | |
# """ | |
# string = container = comment_end = '' | |
# state = 'look' | |
# skip = 0 | |
# comment = False | |
# all_strings = [] |
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
The reviewer is only going to look at your resume for like 10 seconds! | |
No buzzwords like “I am a hardworking, ambitious, problem solver, curious” etc. GET TO THE POINT | |
No photo because it can result bias based on looks, gender, ethnicity | |
One page only | |
No fancy progress bars for skills etc. | |
Nothing fancy as it might not get scanned by a automated reviewer set up by the hiring guy | |
Tailor your resume to each job that you apply to | |
Don’t name your resume something silly e.g. untitled.pdf and no silly filetypes. It should be “Resume - First Last.pdf” |
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
b match b | |
b+ is match bbbbbbbbbbbbbbbbbbbbbbbbb | |
+ is 1 or more matches | |
[bd] is match b d | |
[bd]+ is match bbbdddbbdbdbdbdbdbd, bbbbbddddddd, bbbbbbbbbb, dddddddddddd | |
b* bbbbbbbbbbbbbbbbbbbbbbbbb | |
* is 0 or more matches | |
[^x] matches everything but x | |
(ab+|bc+) will match both abbbbbbb and bccccccccccc, its a OR statement | |
0123456789 \d |
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
Orgnization | |
- find their child companies (crunchbase) | |
- reverse search copyright (Copyright Example Inc. 2018-2022) | |
- job description (tech stack, apply for a job with fake ID) | |
- asn (ips) | |
- emails (scraping, bruteforcing) | |
- bruteforcing | |
- phishing | |
- spoofing | |
- domain |
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
7 | |
11 | |
13 | |
15 | |
17 | |
19 | |
20 | |
21 | |
22 | |
23 |
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
# Author: Somdev Sangwan (@s0md3v) | |
# | |
# GPL v3 License | |
# Copyright 2021 Somdev Sangwan | |
import itertools | |
attachments = { | |
'tactical suppressor': { | |
'type': 'muzzle', |
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 requests | |
with open("events", "r") as events: | |
for event in events: | |
event = event.rstrip("\n") | |
print(requests.get("http://game1.aliyundemo.com/demo/xss.php?name=<x/%s=" % event).status_code, event) |
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
bruh | |
onabort | |
onactivate | |
onafterprint | |
onafterscriptexecute | |
onafterupdate | |
onanimationend | |
onanimationiteration | |
onanimationstart | |
onariarequest |
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 main | |
import ( | |
"sync" | |
"net/http" | |
) | |
func example_function(){ | |
// function to be run concurrently | |
} |
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
<script> | |
window.addEventListener("message", function(message){ | |
document.write("I heard '" + message.data + "'") | |
}); | |
</script> |
NewerOlder