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
#include <MFRC522v2.h> | |
#include <MFRC522DriverSPI.h> | |
//#include <MFRC522DriverI2C.h> | |
#include <MFRC522DriverPinSimple.h> | |
#include <MFRC522Debug.h> | |
// Learn more about using SPI/I2C or check the pin assigment for your board: https://github.com/OSSLibraries/Arduino_MFRC522v2#pin-layout | |
MFRC522DriverPinSimple ss_pin(21); | |
MFRC522DriverSPI driver{ss_pin}; // Create SPI driver |
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
#include "WiFi.h" | |
#include "esp_wifi.h" | |
void scan_done(void* arg, esp_event_base_t event_base, | |
int32_t event_id, void* event_data) { | |
uint16_t apCount = 0; | |
esp_wifi_scan_get_ap_num(&apCount); | |
Serial.printf("Scan done, %d APs found:\n", apCount); | |
wifi_ap_record_t *ap_list = (wifi_ap_record_t *)malloc(sizeof(wifi_ap_record_t) * apCount); |
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 SOC_BLE_50_SUPPORTED | |
#warning "This SoC does not support BLE5. Try using ESP32-C3, or ESP32-S3" | |
#else | |
#include <BLEDevice.h> | |
#include <BLEUtils.h> | |
#include <BLEScan.h> | |
#include <vector> | |
bool bluetoothScan = false; |
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
Option Explicit | |
On Error Resume Next | |
' Crear objeto shell | |
Dim objShell | |
Set objShell = CreateObject("WScript.Shell") | |
' Dividir el comando en partes | |
Dim cmd1, cmd2, cmd3, cmd4, cmd5, finalCmd |
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
'Few years ago, I remember fucking around with this so called "Hacked By Godzilla" virus. | |
'It was a Visual Basic Script with a filename MS32DLL.dll.vbs that fucks up Internet | |
'Explorer title bar. | |
'I have been into writing simple Windows OS viruses before the time I learned about | |
'this fucking VBS virus. | |
'We all know that the famous "I LOVE YOU" virus was a Visual Basic Script (VBS) too | |
'and it gave me an idea to test | |
'if that scripting language can still be reliable to fuck up peoples computer that time. | |
'What I did was, I only replaced "MS32DLL" with "FS6519", pressing Ctrl + H |
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
#/usr/bin/env ruby | |
# encoding: UTF-8 | |
require 'io/console' | |
BEGIN { | |
FOLDER = "\u{00a0}" | |
PASSWORD = "12345" | |
$> << %{\e[35m |