Skip to content

Instantly share code, notes, and snippets.

View c3rb3ru5d3d53c's full-sized avatar
😇
Malware Hunter Killer

c3rb3ru5 c3rb3ru5d3d53c

😇
Malware Hunter Killer
View GitHub Profile
@c3rb3ru5d3d53c
c3rb3ru5d3d53c / bytes.py
Last active April 28, 2022 10:49
Get File Hex Bytes at an Offset
#!/usr/bin/env python
import sys
import argparse
__author__ = "@c3rb3ru5d3d53c"
parser = argparse.ArgumentParser(
prog=f'bytes',
description='Print Bytes from File',
@c3rb3ru5d3d53c
c3rb3ru5d3d53c / git-pipeline-status
Created June 22, 2021 15:26
GitLab Script to Check Pipeline Status of Current Branch
#!/bin/env bash
GITLAB_URL=<your-gitlab-url>
GITLAB_API_PRIVATE_TOKEN=<yout-gitlab-private-token>
if ! git status > /dev/null 2>&1; then
echo "ERROR: current directory is not a git repo" >&2
exit 1
fi
@c3rb3ru5d3d53c
c3rb3ru5d3d53c / floss.py
Created June 2, 2021 12:47
A Ghidra Plugin to that imports Radare2 Scripts generated by Floss
# Parses and Imports Floss Radare2 Script
#@author c3rb3ru5
#@category Strings
#@keybinding
#@menupath
#@toolbar
import re
import json
import base64
@c3rb3ru5d3d53c
c3rb3ru5d3d53c / bazaarupload.py
Created May 1, 2021 11:05
A MalwareBazaar Upload Utility
#!/usr/bin/env python3
import os
import sys
import json
import hashlib
import requests
import argparse
__author__ = "@c3rb3ru5d3d53c"