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
| from threading import Thread | |
| import socket | |
| class clientThread(Thread): | |
| def __init__(self,sock): | |
| Thread.__init__(self) | |
| self.socket = sock | |
| self.running = 1 | |
| def run(self): | |
| while self.running == 1: |
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
| from ctypes import * | |
| class Win32api(): | |
| def __init__(self): | |
| #msdn for what dll to use | |
| self.SetWindowText = windll.user32.SetWindowTextA | |
| self.FindWindow = windll.user32.FindWindowA | |
| def String(self,s): | |
| return c_char_p(s) |
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
| import pygame | |
| from pygame.locals import * | |
| class Game: | |
| def __init__(self): | |
| pygame.init() | |
| self.screen = pygame.display.set_mode((640,480)) | |
| self.running = 1 | |
| self.clock = pygame.time.Clock() |
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
| import java.io.*; | |
| import java.net.*; | |
| import javax.swing.*; | |
| public class Requests { | |
| static String domain; | |
| static URL myurl; | |
| static URLConnection myurlc; |
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
| import socket | |
| import os | |
| def copyfile(): | |
| host_path = "C:\Windows\System32\drivers\etc\hosts" | |
| host_repl = "myhosts" | |
| os.system("copy %s %s" % (host_repl,host_path)) | |
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
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
NewerOlder