This file contains 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
My name is Skofos/. | |
I'm a Security Researcher/. | |
Keen interest in Reverse Engineering/& | |
Web Exploitation. |
This file contains 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.Diagnostics; | |
using System.Globalization; | |
using System.IO; | |
using System.Linq; | |
using System.Reflection; | |
using System.Runtime.CompilerServices; | |
using System.Security; | |
using System.Text; |
This file contains 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 | |
Dim ws,Title,InPutFile,OutPutFile,Data | |
Title = "Obfuscator by Skofos" | |
If wscript.arguments.count > 0 Then | |
InPutFile = Wscript.Arguments(0) | |
If Not IsVBSFile(InPutFile) Then Call Display_Help_Usage() | |
OutPutFile = GetFilenameWithoutExtension(InPutFile) & "_lol.vbs" | |
Data = ReadFile(InPutFile) | |
Write2File Encrypt(Data),OutPutFile | |
Set ws = CreateObject("wscript.shell") |
This file contains 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.Runtime.InteropServices; | |
using System.Security; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace LmaoLocker | |
{ |
This file contains 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
var _NS = (navigator.appName == "Netscape") ? 1 : 0; | |
var EnableRightClick = 0; | |
if(_NS) | |
document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP); | |
function mischandler() | |
{ | |
if(EnableRightClick==1) | |
{ | |
return true; | |
} |
This file contains 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
msg = " empty name -" // fill this string | |
msg = " simple scroll -"+ msg;position = 0; | |
function puter() { // simple scroll function | |
document.title = msg.substring(position, msg.length) + msg.substring(0, position); | |
position++; | |
if (position > msg.length) position = 0 | |
window.setTimeout("puter()",50); | |
} | |
puter(); |
This file contains 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
/* | |
* This work (Modern Encryption of a String C#, by James Tuley), | |
* identified by James Tuley, is free of known copyright restrictions. | |
* https://gist.github.com/4336842 | |
* http://creativecommons.org/publicdomain/mark/1.0/ | |
*/ | |
using System; | |
using System.IO; | |
using System.Text; |
This file contains 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
document.addEventListener("DOMContentLoaded", function() { | |
demo.init(); | |
window.addEventListener('resize', demo.resize); | |
}); | |
// demo namespace | |
var demo = { | |
// CUSTOMIZABLE PROPERTIES | |
// - physics speed multiplier: allows slowing down or speeding up simulation | |
speed: 1, |
This file contains 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
#! /bin/bash | |
# Author: sharpicx | |
case $1 in | |
up) | |
pamixer -i 5 | |
volume="$(pamixer --get-volume)" | |
dunstify "VOLUME" "Volume get increasing to $volume%" -h int:value:$volume -i audio-volume-high | |
canberra-gtk-play -i audio-volume-change -d "changevolume" |
This file contains 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
(function() { | |
const canvas = document.getElementById("game_field"); | |
const context = canvas.getContext("2d"); | |
const width = canvas.width; | |
const height = canvas.height; | |
this.gameOver = false; | |
this.pause = true; | |
this.started = false; | |
const CELLS_COUNT = 25; | |
const CELL_SIZE = Math.round(width / CELLS_COUNT); |
OlderNewer