Skip to content

Instantly share code, notes, and snippets.

View rachejazz's full-sized avatar
:octocat:
Automating and hunting for loopholes

Divya Goswami rachejazz

:octocat:
Automating and hunting for loopholes
View GitHub Profile
@muff-in
muff-in / resources.md
Last active April 27, 2024 22:37
A curated list of Assembly Language / Reversing / Malware Analysis / Game Hacking-resources
@Hritik14
Hritik14 / multi-net.sh
Last active April 23, 2023 17:19
Multipath routing to increase bandwith
#!/bin/bash
# (C) Hritik Vijay
# License: GPLv2
# Suppliment to https://m47r1x.github.io/posts/multi-net/
tmp=$(mktemp multi-net-ip-XXXX --tmpdir)
TIMEOUT=5
Table=200
_ping(){
# Padding Oracle Attack against PKCS7
# From https://github.com/mpgn/Padding-oracle-attack
# martial puygrenier
####################################
# CUSTOM YOUR RESPONSE ORACLE HERE #
####################################
''' the function you want change to adapte the result to your problem '''
def test_validity(response, error):

radare2

load without any analysis (file header at offset 0x0): r2 -n /path/to/file

  • analyze all: aa
  • show sections: iS
  • list functions: afl
  • list imports: ii
  • list entrypoints: ie
  • seek to function: s sym.main

Hercules - the Mainframe Emulator

Hercules is an open source software implementation of the mainframe System/370 and ESA/390 architectures, in addition to the new 64-bit z/Architecture.

Website: http://www.hercules-390.org/

My system info:

uname -a
Darwin ejlp-macbook 14.3.0 Darwin Kernel Version 14.3.0: Mon Mar 23 11:59:05 PDT 2015; root:xnu-2782.20.48~5/RELEASE_X86_64 x86_64
@touilleMan
touilleMan / SimpleHTTPServerWithUpload.py
Last active May 4, 2024 01:08 — forked from UniIsland/SimpleHTTPServerWithUpload.py
Simple Python Http Server with Upload - Python3 version
#!/usr/bin/env python3
"""Simple HTTP Server With Upload.
This module builds on BaseHTTPServer by implementing the standard GET
and HEAD requests in a fairly straightforward manner.
see: https://gist.github.com/UniIsland/3346170
"""
@roachhd
roachhd / README.md
Last active January 23, 2023 17:52
Link to a PDF in JEKYLL 😎

you can [get the PDF]({{ site.url }}/assets/mydoc.pdf) directly.

you can [get the PDF]({{ site.url }}/assets/mydoc.pdf) directly.


@renoirb
renoirb / wpdn-autoupdate.sh
Last active April 17, 2020 19:06
Update website from github when changes on master
#!/bin/bash
#
# Updating and refreshing code for WebAt25.org
#
# https://github.com/saltstack/salt/issues/4176
set -e
logger -i -p local1.notice -t cron "[notice] Host `hostname` ran WebAt25 auto-updater"