Skip to content

Instantly share code, notes, and snippets.

View dokkillo's full-sized avatar
馃彔
Bug bounty mode!

Gabriel C dokkillo

馃彔
Bug bounty mode!
View GitHub Profile
@dokkillo
dokkillo / index.html
Created August 24, 2015 19:04
mJNrVv
<html>
<head>
</head>
<body>
<div id="wrapper">
<div id="sidebar-wrapper">
<ul class="sidebar-nav">
@dokkillo
dokkillo / dni.cs
Created January 31, 2017 20:46
Generador de DNI
public class DNI
{
public string Generate()
{
int numDNI = GetRandomNumber();
char charDNI = GetCharDNI(numDNI % 23);
return numDNI.ToString().PadLeft(8,'0') + "-" + charDNI;
}
@dokkillo
dokkillo / testDelegates.cs
Created August 27, 2017 09:22
Codigo de ejemplo del post sobre delegados de la pagina web tallerdeprogramacion.com
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Eventos
{
public delegate void WorkPerformedHandler(int hours, int type);
@dokkillo
dokkillo / worker.cs
Created August 28, 2017 04:12
Clase worker.cs para el post sobre eventos del tallerdeprogramacion.com
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Eventos
{
public delegate int WorkPerformedHandler(int hours, int type);
@dokkillo
dokkillo / Program.cs
Last active August 29, 2017 05:19
Codigo fuente sobre post sobre como crear una clase custom EventArgs, en tallerdeprogramacion.com
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Eventos
{
class Program
{
@dokkillo
dokkillo / SytemTime.cs
Created March 24, 2018 10:01
Func for Dates
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NominaWF.Utils.Extension;
namespace NominaWF.Utils
{
public static class SystemTime
{
@dokkillo
dokkillo / Basic.cs
Created March 24, 2018 10:06
Object Extension Methods
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NominaWF.Utils.BasicMethods
{
static class Basic
{
internal static Func<object, double> ToDouble = (Obj) =>
@dokkillo
dokkillo / PasswordDigestRequest.cs
Created October 16, 2018 16:30 — forked from leegould/PasswordDigestRequest.cs
Soap Password Digest
using System;
using System.Configuration;
using System.Security.Cryptography;
using System.Text;
namespace SoapServices
{
///
/// Example class for creating a Password Digest Header in .Net
///
#!/usr/bin/python
import requests
import os
import subprocess
import psutil
import time
import sys
# A quick and dirty exploit of ManageEngine Desktop Central StatusUpdate Arbitrary File Upload
# Based off - https://www.exploit-db.com/exploits/34594/