Skip to content

Instantly share code, notes, and snippets.

View W4nn4Die's full-sized avatar
🏠
Working from home

W4nn4Die

🏠
Working from home
View GitHub Profile
@W4nn4Die
W4nn4Die / AddressConverter.sh
Created August 7, 2020 20:55
This small code in bash can convert your address into a valid address for BOF
#!/bin/bash
if [ $# -ne 1 ]; then
echo "Must enter one parameter"
exit 1
fi
if [ $(expr length $1) -ne 8 ]; then
echo "Length is not 8"
exit 2
fi
addr=$(echo $1 | sed 's|..|\\x&|g')
#!/bin/bash
for i in `docker ps | awk '{print $NF}' | grep "^appwrite_"`; do
echo "Stopping container $i"
docker stop $i 1>/dev/null
echo "Deleting container $i"
docker rm -v $i 1>/dev/null
done
for i in `docker network ls | awk '{print $2}' | grep "^appwrite_"`; do
echo "Deleting network $i"
docker network rm $i 1>/dev/null
@W4nn4Die
W4nn4Die / malware.md
Created October 17, 2019 12:07
Malware

Malware Research, Collection, and Analysis

All of this information was collected by doing google searches or from the URLs mentioned in the References section. I collected them here because I wanted a single list that I could update, refer to, and share with others. Simply having a link listed here is not necessarily an endorsement. I only have personal experience with a small number of the resources listed here. I did however, make an initial attempt to remove dead links from the reference links. Some good starting points are Lenny Zelster's Reverse-Engineering Malware Cheat Sheet and Analyzing Malicious Documents Cheat Sheet. In fact, as you'll notice in the reference section, Lenny's site is included multiple times. He has some really awesome information.

Mailing Lists and Discussion Forums

http://www.securityfocus.com/archive/138/description http://reddit.c