Skip to content

Instantly share code, notes, and snippets.

View msp5382's full-sized avatar
🦮
Barking

p16w msp5382

🦮
Barking
  • Thailand
View GitHub Profile
void setup(){
pinMode(13,OUTPUT);
}
void loop(){
digitalWrite(13,HIGH);
delay(250);
digitalWrite(13,LOW);
delay(500);
}
<?php
header('Content-Type: text/html; charset=utf-8');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/png" href="/logo.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">

Keybase proof

I hereby claim:

  • I am msp5382 on github.
  • I am msp5382 (https://keybase.io/msp5382) on keybase.
  • I have a public key ASABDxwiq0Z__j5pLGzbXkdOF0utzyBwgS2gU8IoIyKRrQo

To claim this, I am signing this object:

@msp5382
msp5382 / python-crypter.py
Created March 5, 2018 14:25
All-time Fully Undetectable Malware Creator
import base64
import uuid
import string
from random import randrange
import random
def random_char(y):
return ''.join(random.choice(string.ascii_letters) for x in range(y))
code=input('Python code to be encrypt : ')