Skip to content

Instantly share code, notes, and snippets.

@maugern
maugern / hashor.pl
Created December 12, 2017 11:12
Hashor, perl script to hash file line by line.
#!/usr/bin/perl
# Hashor, hashing file line by line and print output
# Copyright (C) 2017 Nicolas Mauger
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
@maugern
maugern / names.txt
Last active August 14, 2017 07:37
Sorter subdomain enumeraion list used with https://github.com/evilsocket/dnssearch to do faster seach than original name.txt. Unlicensed.
42
!
@
#
about
access
account
accounts
admin
admins
@maugern
maugern / keybase.md
Created July 3, 2017 18:35
My keybase proof.

Keybase proof

I hereby claim:

  • I am maugern on github.
  • I am maugern (https://keybase.io/maugern) on keybase.
  • I have a public key whose fingerprint is B4F3 00B6 DDBE 56F5 8954 B543 63E8 E845 7F02 1798

To claim this, I am signing this object:

import org.apache.log4j.Logger;
/**
* Utilitaires pour centraliser le logging
* @author maugerni
*/
public class LogUtil {
public static final int PAD_NUMBER = 60;
@maugern
maugern / Makefile
Last active June 22, 2016 12:37
My java Makefile
JFLAGS = -g
JC = javac
.SUFFIXES: .java .class
.java.class:
$(JC) $(JFLAGS) $*.java
CLASSES = *.java
default: classes