Skip to content

Instantly share code, notes, and snippets.

View esthicodes's full-sized avatar
🎹
Rachmaninoff: Piano Concerto No.2 Op.18

hona esthicodes

🎹
Rachmaninoff: Piano Concerto No.2 Op.18
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
------------------------------------
-- Script for Interactive Session --
------------------------------------
-- Have messages displayed in English
SET lc_messages TO 'en_US.UTF-8';
-- CREATE Employees -----------------------------------------------------------
@briankip
briankip / binwalk.md
Last active May 8, 2024 13:51
A short introduction to binwalk

Binwalk

Binwalk is a simple linux tool for analysing binary files for embeded files and executable code. It is mostly used to extract the content of firmware images.

Installation

On kali linux, binwalk is already installed. On ubuntu you can do apt-get install binwalk or you can go to https://github.com/devttys0/binwalk and follow the instructions.

Usage

@jirojo2
jirojo2 / CTFBot.js
Last active April 4, 2022 21:37
CTF Telegram Bot
var telegram = require('telegram-bot-api');
var util = require('util');
var _ = require('lodash');
function CTFBot(token, ctf) {
this.id = null;
this.name = null;
this.username = null;
this.ctf = ctf;