Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View dorneanu's full-sized avatar
💭
Engineering #security stuff in #go and #python in #AWS

Victor Dorneanu dorneanu

💭
Engineering #security stuff in #go and #python in #AWS
View GitHub Profile
@dorneanu
dorneanu / subscriptions.opml
Created June 13, 2022 12:03
My RSS Subscriptions
<?xml version="1.0"?>
<opml version="1.0">
<head>
<title>Elfeed-Org Export</title>
</head>
<body>
<outline title="elfeed">
<outline title="reddit">
<outline title="inbox" xmlUrl="https://www.reddit.com/message/inbox/.rss?feed=68ab399ca4600a1cfa26b3b49b794299eb01583c&amp;user=cyneox"/>
<outline title="listings" xmlUrl="https://www.reddit.com/.rss?feed=68ab399ca4600a1cfa26b3b49b794299eb01583c&amp;user=cyneox"/>
@dorneanu
dorneanu / add_link_to_dropbox.sh
Created August 16, 2021 11:49
This will fetch readable content from an URL (using rdrview), convert HTML content to Epub (using pandoc) and finally upload the e-book to Dropbox (using rclone)
@dorneanu
dorneanu / go.mod
Created June 10, 2021 11:43
Convert miMind XML exports to JSON
module mimind2json
go 1.16
require github.com/beevik/etree v1.1.0
@dorneanu
dorneanu / main.go
Last active September 27, 2023 16:06
Simple JS keylogger (can be used in XSS) in combination with a websocket server in Golang. Adapted from the example in the "Black Hat Go" book.
package main
import (
"flag"
"fmt"
"html/template"
"log"
"net/http"
"github.com/gorilla/mux"
@dorneanu
dorneanu / plugin_architecture.md
Last active April 17, 2024 00:15
Python: Implement basic plugin architecture with Python and importlib

Implementing a basic plugin architecture shouldn't be a complicated task. The solution described here is working but you still have to import every plugin (inheriting from the base class).

This is my solution:

Basic project structure

$ tree
@dorneanu
dorneanu / convert_json_to_strct_list.go
Last active September 20, 2022 03:27
Golang: Convert JSON string/objects to list of structure
// Go Playground: https://play.golang.org/p/cMutpCzpmth
package main
import (
"fmt"
"encoding/json"
)
// Field is a key value structure
@dorneanu
dorneanu / list_all_repos.py
Last active December 15, 2023 17:10
Python: List all repos inside a organization using python and github3
# Make sure you authorize your access token to be used with SAML
# https://help.github.com/articles/authorizing-a-personal-access-token-for-use-with-a-saml-single-sign-on-organization/
#
# Run:
# python list_all_repos.py <org>
import github3
import os
GITHUB_ACCESS_TOKEN = os.environ["GITHUB_ACCESS_TOKEN"]
@dorneanu
dorneanu / stack.dot
Created October 31, 2016 15:15
Graphviz for plotting stack and dereferenced values
// Show stack and dereferenced values using Graphviz (DOT)
// (c) Victor Dorneanu
digraph G {
// Define layout
graph [pad=".75", ranksep="0.95", nodesep="0.05"];
rankdir=LR;
node [shape="record"];
rank=same;
import requests
import pandas as pd
import os
# Config stuff
url="https://www.yourapp.com/add/new/file"
headers = {
'User-Agent': 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:47.0) Gecko/20100101 Firefox/47.0'
# Add here more headers
@dorneanu
dorneanu / chroot.sh
Last active January 21, 2020 13:01
Put nginx and PHP to jail using Debian 8
#!/bin/bash
# Config
N2CHROOT=~victor/tmp/n2chroot
export JAIL=/var/www/chroot
function create_chroot {
# Create devices
mkdir $JAIL/dev
mknod -m 0666 $JAIL/dev/null c 1 3