I hereby claim:
- I am ilyaglow on github.
- I am ilyaglotov (https://keybase.io/ilyaglotov) on keybase.
- I have a public key whose fingerprint is CC29 23C1 C02F B18A 3B84 CE60 1F7E 6992 B027 B333
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
import json | |
import requests | |
PLANS = """ | |
[{ | |
"name": "basic", | |
"description": "Run basic tests", |
#!/usr/bin/env python | |
# | |
# Check SMB dialects host supports | |
# | |
# Dependencies: | |
# pip install impacket | |
# | |
# Usage: | |
# ./check_smb_dialects.py <host> | |
# |
echo "IPForward = yes" >> /etc/systemd/network/"$(ip route get 8.8.8.8 | head -n1 | cut -d ' ' -f5)".network && systemctl restart systemd-networkd |
#!/usr/bin/env python3 | |
# | |
# Converter based on volatility timeliner json output | |
# you need to install python-dateutil to use it: | |
# pip3 install python-dateutil --user | |
# | |
# Volatility json output has following columns: | |
# [u'Start', u'Header', u'Item', u'Details'] | |
# | |
# The data row: |
/* | |
* apk add hiredis | |
* gcc -o simple-lpush simple_lpush.c -lhiredis | |
* ./simple-lpush mylist value | |
* | |
* On the consumer side: | |
* while :; do redis-cli BLPOP mylist 0; done | |
*/ | |
#include <stdlib.h> |
FROM alpine | |
LABEL maintainer "[email protected]" | |
RUN apk update \ | |
&& apk add --no-cache libcap \ | |
libpcap-dev \ | |
\ | |
&& apk add --no-cache --virtual .deps build-base \ | |
git \ | |
linux-headers \ |
# | |
# pip install --user python-dateutil | |
# | |
import sys | |
import csv | |
import time | |
from dateutil import parser | |
from dateutil import tz | |
package main | |
import ( | |
"encoding/csv" | |
"encoding/json" | |
"flag" | |
"fmt" | |
"io" | |
"log" | |
"net/http" |
package main | |
import ( | |
"bufio" | |
"database/sql" | |
"flag" | |
"log" | |
"os" | |
"path/filepath" | |
"strings" |