Skip to content

Instantly share code, notes, and snippets.

{
"type": "bundle",
"id": "bundle--cf20f99b-3ed2-4a9f-b4f1-d660a7fc8241",
"spec_version": "2.0",
"objects": [
{
"type": "intrusion-set",
"id": "intrusion-set--da1065ce-972c-4605-8755-9cd1074e3b5a",
"created": "2015-05-15T09:00:00.000Z",
"modified": "2015-05-15T09:00:00.000Z",
@SteveClement
SteveClement / twotwo.sh
Last active November 22, 2020 06:49 — forked from bhundven/nineteen.sh
Enlightenment 22 build script for Ubuntu/Debian
#!/bin/bash
# vi: ts=4:sw=4:et
#
# twotwo.sh
# This script allows you to install/update Enlightenment 22 git version on
# Ubuntu 18.04 LTS or Debian testing (buster), or remove E22 git from your system.
# Originally from: http://ubuntuforums.org/showthread.php?t=2203190
# By: Philippe J. Guillaumie (batden AT sfr DOT fr).
# Additional updates by: Bryan Hundven (bryanhundven AT gmail DOT com).
#
@SteveClement
SteveClement / get_dir_size.py
Created September 20, 2012 12:18
Get Directory size in python
import os
def get_size(start_path = '.'):
total_size = 0
for dirpath, dirnames, filenames in os.walk(start_path):
for f in filenames:
fp = os.path.join(dirpath, f)
total_size += os.path.getsize(fp)
return total_size
print get_size()
@SteveClement
SteveClement / install_ffmpeg_libfdkaac.sh
Last active August 6, 2020 10:05 — forked from rafaelbiriba/install_ffmpeg_libfdkaac.sh
Install FFmpeg with libfdk_aac support (For Ubuntu)
# Criando um script .sh para executar todos os comandos
#user@servidor:~$ wget https://gist.githubusercontent.com/SteveClement/26d9c9035c635fb7bff05ff8eacd1a94/raw/d3a82be86039f72f25f8d2b8cbc6d5299be75cac/install_ffmpeg_libfdkaac.sh
#user@servidor:~$ chmod +x install_ffmpeg_libfdkaac.sh
#user@servidor:~$ ./install_ffmpeg_libfdkaac.sh
YOLO="true" # Living on the bleeding edge
x265="true" # Include libx265
mkdir -p ~/bin
@SteveClement
SteveClement / explode.sh
Created April 16, 2020 05:45
Explode video file with ffmpeg
#!/usr/bin/env bash
INPUT_FILE="${1}"
if [[ ! -f "${1}" ]]; then
echo "File "${1}" does not exist"
exit -1
fi
if [[ ${INPUT_FILE} == *"/"* ]]; then
echo "Slash exists"
@SteveClement
SteveClement / convert_mysql_to_sqlite3.sh
Last active January 26, 2020 09:26 — forked from grfiv/convert_mysql_to_sqlite3.sh
convert a mysql database to sqlite3
#!/usr/bin/env bash
#
# convert a mysql database to sqlite3
#
#see https://stackoverflow.com/questions/5164033/
# export-a-mysql-database-to-sqlite-database
mysql_host=localhost
mysql_user=george
#mysql_passwd=****************
@SteveClement
SteveClement / pullMergePush.sh
Created November 15, 2019 01:01
pull, merge and push my MISP branches
#!/usr/bin/env bash
BASE="2.4"
CURRENT_BRANCH=$(git branch | grep ^\* |cut -f 2 -d\ )
git checkout $BASE && git fetch upstream
git merge upstream/$BASE && git push
# gh-pages (not needed, will be done during doc regen)
@SteveClement
SteveClement / 100komma7-audioRSSm3u.py
Last active May 24, 2019 02:46
Python Script to parse the 100,7 RSS Audio Archive and write-out an m3u playlist
#!/usr/bin/env python3
## This script is obsolete and only for historical reasons still present.
import xml.etree.ElementTree as etree
from optparse import OptionParser, OptionGroup
from datetime import timedelta, date
import calendar
import urllib.request
import os, re, sys
@SteveClement
SteveClement / jsonschema
Created November 29, 2018 04:52
jsonschema script in case it is missing
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from jsonschema.cli import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
########### Checking Requirements ###########
[OK] Docker is Installed. Output: Docker version 18.06.1-ce, build e68fc7a
[OK] Git is Installed. Output: git version 2.19.1
[OK] Check: https://misp.dcso.de
Result: * Connected to misp.dcso.de (185.183.127.100) port 443 (#0).
[OK] Check: https://dockerhub.dcso.de/v2/
Result: * Connected to dockerhub.dcso.de (217.110.69.251) port 443 (#0).
[OK] Check: https://github.com/DCSO/misp-dockerized
Result: * Connected to github.com (192.30.255.113) port 443 (#0).