neonprimetime security , just trying to help

Wednesday, March 11, 2020

simplistic python fuzzing

›
import os for i in range(500,1000,1):  cmd = ("python -c \"print('A' * %d)\"" % i)  print("fuzzing leng...
1 comment:
Tuesday, March 10, 2020

shellcode in ASM to C program examples

›
not optimized for shortness does not remove null (00) characters -------- using data -------- section .text  global _start _start: ...
1 comment:

Convert String to Shell Code Hex in Python

›
if you want   //bin/sh to become hex you can use in assembly for shell code >>> for word in (re.findall(".{8}", binas...
1 comment:

Decode ShellCode String in Python

›
if you see this push 0x68732f2f push 0x6e69622f it may be a string you can use python 3 to decode and see import binascii >>...
1 comment:
Monday, February 24, 2020

McAfee Antivirus Malware Virus Type Names Prefixes

›
from here from 2017 http://download.nai.com/products/datfiles/4.x/nai/readme.txt A97M/ Macro virus that infects Microsoft ...
3 comments:
Thursday, February 20, 2020

FireEye RDP Tunneling walk-through

›
https://www.fireeye.com/blog/threat-research/2019/01/bypassing-network-restrictions-through-rdp-tunneling.html setup 2 vms both set to ...
3 comments:
Saturday, February 15, 2020

python pefile ctypes kernel32.dll examples

›
import pefile import ctypes kfile = pefile.PE(r'Kernel32.dll') --- *** displays all exports such as *** --- for export in kfil...
1 comment:
‹
›
Home
View web version
Powered by Blogger.