Skip to content

Instantly share code, notes, and snippets.

@MattKetmo
MattKetmo / .openl10n.yml
Last active November 25, 2015 13:19
Openl10n push/pull options
files:
-
pattern: path/to/messages.<locale>.yml
options:
# Options when pushing (importing) translation files:
# - reviewed = Mark directly all translations as approved
# - erase = Replace existing translations by the ones in the files
# - clean = Delete translations which are not present in the files anymore
push: [reviewed, erase, clean]
@MattKetmo
MattKetmo / fastcgi.conf
Created December 8, 2015 21:40
FastCGI nginx config
server {
listen 80;
server_name fastcgi.dev;
location / {
fastcgi_pass 127.0.0.1:6000;
include fastcgi_params;
fastcgi_param CONTENT_LENGTH $content_length;
@MattKetmo
MattKetmo / onename.txt
Created January 8, 2016 10:01
onename.com
Verifying that +mattketmo is my blockchain ID. https://onename.com/mattketmo
@MattKetmo
MattKetmo / pwnd.md
Last active June 11, 2025 21:06
pwnd

Tools

  • Metaspoit: Penetration testing software
  • GhostShell: Malware indetectable, with AV bypass techniques, anti-disassembly, etc.
  • BeEF: The Browser Exploitation Framework
  • PTF: Penetration Testers Framework
  • Bettercap: MITM framework
  • Nessus: Vulnerability scanner
  • AutoNessus: Auto Nessus
  • BDFProxy: Patch Binaries via MITM (BackdoorFactory)
@MattKetmo
MattKetmo / memusage.sh
Created February 22, 2017 14:51
memusage.sh
#!/bin/bash
if [ "$1" = "" ] ; then
echo -n "Nom du process : "
read process
else
process=$1
fi
ps aux | grep $process | grep -v grep | awk 'BEGIN { sum=0 } {sum=sum+$6; } END {printf("Taille RAM utilisée: %s Mo\n",sum / 1024)}'
@MattKetmo
MattKetmo / cqrs_posts.json
Last active January 23, 2018 13:11
cqrs posts
[
{
"title": "Exposing CQRS Through a RESTful API",
"url": "http://www.infoq.com/articles/rest-api-on-cqrs"
},
{
"title": "REST API Design - Resource Modeling",
"url": "http://www.thoughtworks.com/insights/blog/rest-api-design-resource-modeling"
},
{