This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
using System.Net.Sockets; | |
using System.Threading; | |
using System.IO; | |
using System.Diagnostics; | |
namespace NativePayload_ReverseShell | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
using System.Net.Sockets; | |
using System.Threading; | |
using System.IO; | |
using System.Diagnostics; | |
namespace NativePayload_ReverseShell | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Librerias basicas para | |
#include <stdio.h> // I/O | |
#include <stdlib.h> // Libreria standar para manejo de memoria, conversion numerica, etc | |
#include <string.h> // manejo de strings (char * terminados en \0) | |
#include <unistd.h> // Libreria que provee acceso a POSIX (api del sistema operativo) | |
#include <math.h> // funciones matematicas | |
// Librerias para sockets |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Net; | |
using System.Net.Sockets; | |
namespace ircCtf | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef UNICODE | |
#define UNICODE | |
#define _UNICODE | |
#endif // UNICODE | |
#include <windows.h> | |
#include <wininet.h> | |
#include <wchar.h> | |
#include <stdio.h> | |
struct responseGet |