Skip to content

Instantly share code, notes, and snippets.

View c1b3rh4ck's full-sized avatar

c1b3rh4ck c1b3rh4ck

  • PereiraSecTeam
  • South-America
View GitHub Profile
@c1b3rh4ck
c1b3rh4ck / ctfinfobot.py
Created September 22, 2014 04:18
This newsbot is a simple script written in python.using the Twython library to interact with twitter api. The purpose of this script is received all the information(e.g hints,tricks and tips and if there are flags available :P ), Capture the flag or jeopardy contest besides that, OSINT techniques is a form of intelligence collection management t…
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Ctf InfoBot c1b3rh4ck@gmail.com
#it was created thinking in the talk :
#Ctf and Jeopardy Contests,BarcampSE 2013
#https://twython.readthedocs.org/en/latest/
"""
ToDO :
@c1b3rh4ck
c1b3rh4ck / main.tex
Last active August 29, 2015 14:06
Ctf Format.Writeup for Pereira Security Team
\documentclass[a4paper]{article}
\usepackage[spanish]{babel}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{url}
\usepackage{color}
\usepackage{hyperref}
\hypersetup{

Keybase proof

I hereby claim:

  • I am c1b3rh4ck on github.
  • I am c1b3rh4ck (https://keybase.io/c1b3rh4ck) on keybase.
  • I have a public key whose fingerprint is 3BF5 75E3 F5F8 3EF4 432D D693 834E B578 493B 3138

To claim this, I am signing this object:

@c1b3rh4ck
c1b3rh4ck / simulation.sh
Created January 24, 2015 20:50
Simulate system up to date debian
#!/bin/bash
#Cron Script Run from /etc/crontab.daily
#runs apt-get update and prints the output of a simulated
#dist-upgrade if new packages are found, also you can add a line in crontab with a pipe
#to run a mail.
if [[`apt-get update 2>&1|grep Get` ]]; then
if [[`apt-get --simulate dist-upgrade 2>&1|grep Inst` ]];then
apt-get --simulate dist-upgrade
fi
@c1b3rh4ck
c1b3rh4ck / serverinfo.sh
Created January 24, 2015 20:58
statistics
#!/bin/bash
#Show some statistics of the server.
#Colors
red='\e[0;31m'
RED='\e[1;31m'
blue='\e[0;34m'
BLUE='\e[1;34m'
cyan='\e[0;36m'
CYAN='\e[1;36m'
@c1b3rh4ck
c1b3rh4ck / net.sh
Created March 18, 2011 03:19
PoC bash Scripting
#!/bin/bash
for webservmethod in GET POST PUT TRACE CONNECT OPTIONS PROPFIND;
do
printf "$webservmethod " ;
printf "$webservmethod /HTTP/1.1\nHost:$1\n\n " |nc -q 1 $1 80 |grep "HTTP/1.1"
done
@c1b3rh4ck
c1b3rh4ck / solvesbd.html
Created March 18, 2011 03:28
this is a simple html file using a simple query for found the total comments and all post of blogger
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=utf-8"><title>Triva sbd</title><style type="text/css">
body { }
h1 { font-size: xx-large;
font-weight: bold;
border-bottom: 1px solid black; }
div.note {
position: relative;
@c1b3rh4ck
c1b3rh4ck / template.asm
Last active December 14, 2015 00:09
Plantilla de registros y direcciones de memoria del pic16f877
;Template para Pic16f877
;ToDo :
;Crear Rutinas de tiempo
;Crear Conversion A/D
;Crear Manejadores de memoria de datos indirecto y directo
;Jugar con registros para XOR en memoria
;Comprar un 18 con memoria flash para alcanzar a jaime A.
;Crear nuevas rutinas para espacio de 96 bytes
@c1b3rh4ck
c1b3rh4ck / eiacurve.m
Last active December 14, 2015 04:39
Calculator of Standard EIA Decade Resistor Values Table
%Standard EIA Decade Resistor Values Table
%R=d*10^(i/n)
%feedback:hfjimenez@utp.edu.co
%http://www.logwell.com/tech/components/resistor_values.html
clc
clear all;
clear ans;
d=input('What decade are you trying to obtain ?');%enter de multi factor 1,10,100,1000
@c1b3rh4ck
c1b3rh4ck / curve.m
Last active December 14, 2015 04:39
Progressive plot...of eia
%feedback:hfjimenez@utp.edu.co
clc;
clear all;
d=input('Enter the decade');
n=input('Enter tolerance factor En,where n is {3,192}:');
for i=1:n;
R(i)=d*10^(i/n);
end;
plot(R,'r--');%red ploting
grid on;%grid