Skip to content

Instantly share code, notes, and snippets.

View TerminalFi's full-sized avatar
🔥

Terminal TerminalFi

🔥
View GitHub Profile
This file has been truncated, but you can view the full file.
<html>
<head>
<style>
body {
font-family: Segoe UI, Arial, Helvetica;
margin: 1rem;
}
h2 {
@TerminalFi
TerminalFi / Dockerfile
Created February 22, 2022 00:06
Docker Compose Example / Database + App
# Dockerfile References: https://docs.docker.com/engine/reference/builder/
# Start from golang:1.17-alpine base image and name the image `dev`
FROM golang:1.17-alpine as dev
# Add a work directory within the Container (not locally)
WORKDIR /app
# Copy local files from the current working directory into ./ in the container
{
"contributes":{
"configuration":{
"type":"object",
"title":"Terraform",
"properties":{
"terraform.languageServer":{
"type":"object",
"description":"Language Server settings",
"properties":{
create (Command)
bound (Command)
resize_window (Command)
default_redo_or_repeat (Command)
show_changelog (Command)
show_about_window (Command)
remove_license (Command)
show_license_window (Command)
open_dir_in_sublime_text (Command)
open_in_editor (Command)

Keybase proof

I hereby claim:

  • I am terminalfi on github.
  • I am theseceng (https://keybase.io/theseceng) on keybase.
  • I have a public key ASBGwTuqvq8p9VP6JRqplrsf_xkSFBGaiPdye_w0eqRpNAo

To claim this, I am signing this object:

@TerminalFi
TerminalFi / blind-xss-cloudflare-worker.js
Created September 18, 2019 14:13 — forked from vavkamil/blind-xss-cloudflare-worker.js
Serverless Blind XSS hunter with Cloudflare Worker
addEventListener("fetch", event => {
event.respondWith(handleRequest(event.request))
})
////////////////////////////////////////////////////////////////////////////////////////////////////
// ! DON'T LEAK THE SECRETS !
// Use Workers KV if you can https://developers.cloudflare.com/workers/reference/storage/
const telegram_token = "*****REDACTED*****";
const telegram_url = "https://api.telegram.org/bot" + telegram_token + "/sendMessage";
@TerminalFi
TerminalFi / audit.rules
Created December 17, 2018 17:18 — forked from Neo23x0/audit.rules
Linux Auditd Best Practice Configuration
# IMPORTANT!
# This gist has been transformed into a github repo
# You can find the most recent version there:
# https://github.com/Neo23x0/auditd
# ___ ___ __ __
# / | __ ______/ (_) /_____/ /
# / /| |/ / / / __ / / __/ __ /
# / ___ / /_/ / /_/ / / /_/ /_/ /
# /_/ |_\__,_/\__,_/_/\__/\__,_/
@TerminalFi
TerminalFi / shellcode.c
Created July 23, 2018 11:29 — forked from securitytube/shellcode.c
C Program to test shellcode
#include<stdio.h>
#include<string.h>
unsigned char code[] = \
"\x31\xc0\x50\x68\x6e\x2f\x73\x68\x68\x2f\x2f\x62\x69\x89\xe3\x50\x89\xe2\x53\x89\xe1\xb0\x0b\xcd\x80";
main()
{
printf("Shellcode Length: %d\n", strlen(code));