Skip to content

Instantly share code, notes, and snippets.

View DamienChiboub's full-sized avatar

dvi- DamienChiboub

View GitHub Profile
@DamienChiboub
DamienChiboub / Autocloseable Bootstrap alert
Last active March 20, 2016 04:23
Autocloseable Bootstrap alert that require Jquery & Bootstrap library
<!DOCTYPE html>
<meta name="robots" content="noindex">
<html>
<head>
<script src="https://code.jquery.com/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Autocloseable Bootstrap alert</title>
@DamienChiboub
DamienChiboub / Responsive Jquery Map Clickeable Department (France)
Last active August 29, 2015 14:14
Responsive Jquery Map Clickeable Department (France)
<!DOCTYPE html>
<meta name="robots" content="noindex">
<html>
<head>
<script src="http://code.jquery.com/jquery.min.js"></script>
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<meta charset="utf-8">
<title>Responsive Jquery Map Vector with Clickeable Department</title>
<style id="jsbin-css">
@DamienChiboub
DamienChiboub / ContactForm.php
Created November 29, 2014 04:39
Php 5 ContactForm.php
<?php
// define variables and set to empty values
$nomErr = $emailErr = $objetErr = $messageErr = "";
$nom = $email = $objet = $message = "";
if ($_SERVER["REQUEST_METHOD"] == "POST") {
if (empty($_POST["nom"])) {
$nomErr = "Nom complet requis";
} else {
@DamienChiboub
DamienChiboub / ovh-exploit.pl
Last active December 20, 2015 06:29
It's a Perl script created to exploit a #dataleak from ovh hoster. I was able to get Ovh.Users( Nic-Handles & GsmNumbers). Weakness was on this script : ovh.com/fr/cgi-bin/newOrder/ajax-newOrderCheckCellPhone.pl reached by the register process. Ovh-exploit.pl can be launched, but it's now returning errors. It's also creating ovh-data.txt & ovh-d…
#-- Found in 2011 --
#-- Ovh DataViewer Perl Script --
#-- This Script Show the dataleak of the Ovh Register Process --
#-- Start
#-- Step 1 Generate Random GSM number --
#-- Step 2 Generate Random Target Selection by listed servers --
#-- Step 3 Request the Generated Target/GSM --
#-- Step 4 Store Result on ovh-data.txt or Issue on ovh-dbg.txt --
#-- End
#-- Posted @ https://gist.github.com/DamienChiboub/6085725/