User Controls
Posts by The Self Taught Man
-
2015-09-23 at 3:09 AM UTC in Thelittlestnigger Appreciation Thread
i'd totally be gay for you if i was like gay and shit.
This sums it all up man, this sums it all up.
Ill keep posting shit probably. I'll keep posting my stuff from the grey hat book. Once I get the DLL injector working I think ill have a damn fine thread to contribute here. I also am working off a story based off my post in your daydreaming thread. Ill probably post it once I get a few chapters done. -
2015-09-23 at 2:31 AM UTC in Mother of God...
[size=6]no_tits_nati.onion[/size]
Fixd bruh
-
2015-09-23 at 1:04 AM UTC in Your mom is so homeless
I'd probably select the chicken, if I really had to. Actually, I think starving to death would be preferable.
We should be so lucky. -
2015-09-23 at 1:03 AM UTC in Morality and Law
You see, morality is like a luxury only those who have plenty can afford. It is easy to say theft is wrong when your belly is full.
No. You see, morality is like a luxury only those who think rationally can afford. Its easy to say its easy to say theft is wrong when your belly is full. But can you imagine how difficult it is to dictate what is wrong when the bellies of the entire nation are going on empty? Mayhaps a threat to survival modifies the acceptance of how food is obtained traded and bought but to the moral man it mean that that way must be the right way. One cannot say "people are driven to commit crime, they dont decide to" when the decision to commit crime is unrelated to their hunger level. People actually driven to break moral bounds are those who are truly driven by the situation. Those who decide to commit crime indeed make the decision. Can you really say that that gang banger who shot a three year old because he missed a rival drug dealer with his tek-9 was driven into the situation? No, the situation is the logical conclusion of a larger product composed of all the decisions he previously made, therefore if he made different decisions the crime would have not occurred and a child would not have been killed.
Also "according to science" is not a legitimate viewpoint. According to science we can make determinations based on what we think we can interpret from tests and their results to fit them into a model of the phenomena. According to science is nothing more than faith rebranded and most likely misplaced.
-
2015-09-22 at 11:54 PM UTC in Morality and LawLets be for real. We must first accept that there is a difference between theory and practice. For example we can take the moral relativistic theory and say that under a certain scope it is true that all moral mores and normalities are just a consequence of culture. From this we derive that living in a world with diverse cultural morality and normativity means that we must regard each and every cultures moral doctrine as relevant to its own people and only its own people leading to the idea that no culture or civil moral code is "correct". And people whip this out at every turn to destroy the conversation that needs having on morality. Think of the greatest empires and what their greatest accomplishments were. We still benefit from the language, sciences, philosophy and even things like architecture from these empires. They were bold empires, expanding at great rates. Had an advanced law and justice system and a strong morality. Technology was viewed as an improvement. Advanced religious doctrine and social hierarchy. And now think of the cultures who never even got to the empire stage. Think of the cultures who's language is exotic, its sciences and philosophy revolve solely around survival, its architecture was at best mud huts. They were meek tribes, with no change from generation to generation. Their law is the wild and their justice the stone. Technology is viewed as foreign and devilish.
Even in the relative view the majority of the entire globe can relate closer to the former than the latter. The developed countries of the world are a complex social dance that constructs cities and operates on order. In the current day, justice is a farce because our morality is a farce. You see it is around the time of abundance any empire in history declines. Abundance leads to over-consumption and a basic moral tenant of all civilized peoples is restraint. This results in conflict where the people idiotically remove restraint from their moral inventory and keep enjoying indulgence. But the time of indulgence comes to an end. This brings about a time of vitriol and hate for their own mistakes. But each defends its self from the conception that they were of the mistaken party. And in this time the country divides itself by removing unity from their moral inventory. With an unrestrained and divided populous there is nothing short or barbarism. Propriety becomes law and just men become thieves. Charity is lost. Then faith. And at last, so is hope.
Looking at our situation western nations are in the stage of division and have already passed the abundance phase. The sad thing is if just readopted our previous national moral inventory we would make it out of this mess. But the commies wont let that shit fly. -
2015-09-22 at 11:35 PM UTC in Morality and Law
If you really think predators(Animals) have the mental capacity for reason and morality then you're a silly nigga'. Also, UPB is useful in the same way morals are useful, you can't stop psychopaths from murdering people, does that mean we have to abandon morality or ethics for that matter entirely?
We are predators. -
2015-09-22 at 10:51 PM UTC in Do you day dream?
I daydream about blowing my brains out constantly. Not in an edgy way, just because it makes me feel less depressed.
Reach for your dreams! -
2015-09-22 at 8:06 PM UTC in plz help with python debuggerSo I am working on a little windows debugger from the book grey hat python. The code I have thus far is in three files as follow:
#my_debugger_defines.py
#This file is definitions and shit for the debugger
from ctypes import *
#Map of Microsoft types to ctypes
WORD = c_ushort
DWORD = c_ulong
LPBYTE = POINTER(c_ubyte)
LPTSTR = POINTER(c_char)
HANDLE = c_void_p
#constants
DEBUG_PROCESS = 0x00000001
CREATE_NEW_CONSOLE = 0x00000010
#structures for CreateProcessA() function
class STARTUPINFO(Structure):
_feilds_ = [
("cb", DWORD),
("lpReserved", LPTSTR),
("lpDesktop", LPTSTR),
("lpTitle", LPTSTR),
("dwX", DWORD),
("dwY", DWORD),
("dwXSize", DWORD),
("dwYSize", DWORD),
("dwXCountChars", DWORD),
("dwYCountChars", DWORD),
("dwFillAttribute", DWORD),
("dwFlags", DWORD),
("wShowWindow", WORD),
("cbReserved2", WORD),
("lpReserved2", LPBYTE),
("hStdInput", HANDLE),
("hStdOutput", HANDLE),
("hStdError", HANDLE),
]
class PROCESS_INFORMATION(Structure):
_fields_ = [
("hProcess", HANDLE),
("hThread", HANDLE),
("dwProcessId", DWORD),
("dwThreadId", DWORD),
]
#my_debugger.py
#the code of the debugger
from ctypes import *
from my_debugger_defines import *
kernel32 = windll.kernel32
class debugger():
def _init_(self):
self.h_process = None
self.pid = None
self.debugger_active = False
def load(self,path_to_exe):
#dwCreation flag determines how to create the process
#set creation_flags = CREATE_NEW_CONSOLE for calc GUI
creation_flags = DEBUG_PROCESS
#instantiate the structs
startupinfo = STARTUPINFO()
process_information = PROCESS_INFORMATION()
#options allow started process to be shown as a seperate window
startupinfo.dwFlags = 0x1
startupinfo.wShowWindow = 0x0
#initialize cb variable in STARTUPINFO struct
startupinfo.cb = sizeof(startupinfo)
if kernel32.CreateProcessA(path_to_exe,
None,
None,
None,
None,
creation_flags,
None,
None,
byref(startupinfo),
byref(process_information)):
print "
[*] We have successfully launched the process!"
print "
[*] PID: %d" % process_information.dwProcessId
# obtain and stove valid handle
self.h_process = self.open_process(process_information.dwProcessId)
else:
print "
[*] Error: 0x%08x." % kernel32.GetLastError()
def open_process(self,pid):
h_process = kernel32.OpenProcess(PROCESS_ALL_ACCESS,pid,False)
return h_process
def attach(self,pid):
self.h_process = self.open_process(pid)
# Attempt to attach to process
# if this fails we exit the call
if kernel32.DebugActiveProcess(pid):
self.debugger_active = True
self.pid = int(pid)
self.run()
else:
print "
[*] Unable to attach to the process."
def run(self):
#poll debugee for degbugging events
while self.debugger_active == True:
self.get_debug_event()
def get_debug_event(self):
debug_event = DEBUG_EVENT()
continue_status = DBG_CONTINUE
if kernel32.WaitForDebugEvent(byref(debug_event),INFINITE):
raw_input("Press a key to continue..")
self.debugger_active = False
kernel32.ContinueDebugEvent( \
debug_event.dwProcessId, \
debug_event.dwThreadId, \
continue_status )
def detach(self):
if kernel32.DebugActiveProcessStop(self.pid):
print "
[*] Finished debugging. Exiting..."
return True
else:
print "There was an error"
return False
#my_test.py
# code I run to test the debugger and its components
import my_debugger
debugger = my_debugger.debugger()
#debugger.load("C:\\WINDOWS\\system32\\calc.exe")
pid = raw_input("Enter the PID of the process to attach to: ")
debugger.attach(int(pid))
debugger.detach()
So when I run the debugger test I get this:
>>>
Enter the PID of the process to attach to: 6564
Traceback (most recent call last):
File "C:\Users\The Toddster\Documents\py\my_test.py", line 8, in <module>
debugger.attach(int(pid))
File "C:\Users\The Toddster\Documents\py\my_debugger.py", line 54, in attach
self.h_process = self.open_process(pid)
File "C:\Users\The Toddster\Documents\py\my_debugger.py", line 49, in open_process
h_process = kernel32.OpenProcess(PROCESS_ALL_ACCESS,pid,False)
NameError: global name 'PROCESS_ALL_ACCESS' is not defined
So what I understand that the PROCESS_ALL_ACCESS is not defined or some shit but the code in the book is identical to that which I typed. I looked it over soooo many damn times but I dont understand why it wont work. The book doesnt have a definition of PROCESS_ALL_ACCESS so I am not sure what I need to do to define it.
For reference the working code can be found here:
https://drive.google.com/file/d/0B94WN9ZjhJVNN2hlUndkb1FNVkk/edit?pli=1
The my_debugger_defines.py code is on page 27 and the my_test.py and my_debugger.py can be found on pages 31 and 32. You can also see some code for the debugger and test on page 28 and 29. I got this version of the program to work fine but upon expanding the code I get the above error. Anyway can someone help me out? -
2015-09-22 at 7:16 PM UTC in Do you day dream?Maybe ill make an assassin chronichles thread where I write stories of the above nature.
-
2015-09-22 at 7:04 PM UTC in Do you day dream?Ave Maria is a great one to fantazise about mass murder to. Personally I would listen to this song while shooting up a religious institution just because it would just feel more right.
I for one very much enjoy the idea of listening to this while suiting up in a tux for a fancy assasination:
I then enter the building with below playing on the headphones:
At the start of it, I am simply dramatically making my way to my target. At the rise of the music, I spot my target and he spots me. I get in a chase. He pulls some clever manuvers, but my skill set is beyond him. Thinking he could cut through an hallway I make my way to the end of it before he manages to escape. At the fall of the music (3:00) he spots me at the end of the cooridoor. But I am too close for him to turn back. He looks into my eyes with that begging plea for life. There is a long dramatic moment where we are simply looking at eachother. Then I begin walking towards him. In his fear he turns around and makes one last effort to escape. Im too close and catch him around his neck with my garrote. As I tighten the noose around his neck, hearing him gasp for breath I tell him "Raymond Harkness told me to make sure you know the cost of losing a deal". He goes limp and I pull him into a broom closet where I put his belt around his neck and tie it to the door knob. I pull his penis out of his pants and put it in his hand. He will be counted as just another sex fiend trying to get his rocks off in weird and imaginative ways who went a little too far.
On the walk home from my appartment I call Mr. Harkness and inform him that my final payment must be deposited before midnight and that the job went smoothly. I unlock the door to my appartment and step in. I pour myself a glass of wine and toss this on the old record player:
As I sit in my lounge chair listening to this glorious sonic moment my wife arrives with the children. With a smile on my face I greet them and tell her my meeting went fantastic and that I got the contract renewed. She doesn't know what any of that means but knows its good and means we can keep sending the kids to a good school and keep our somewhat lavish lifestyle. I put the kids to bed and walk into the bedroom. I tell my wife I love her, even though she is half asleep. I climb into bed, completely relaxed. As I lay in bed one last image remaining in my head. The look of fear in that mans eyes before I killed him. They all give me that look of knowing they havent even got minuets left. Its the best part of the job. As I drift off into oblivion I gaze into those eyes and they put me to sleep. -
2015-09-22 at 6:46 PM UTC in Your mom is so homelessYour mom is so fat she didn't fit in this joke.
-
2015-09-22 at 5:52 PM UTC in Morality and Law
Then let's just follow the Ten Commandments and abolish all other laws; call it good. XD
That's too many rules. You only need one.
"An ye harm none, do what thou wilt"
-
2015-09-22 at 5:44 PM UTC in Are flies jedis?Flies can't be jedi. They eat pork. Hell, they eat pork shit.
-
2015-09-22 at 5:42 PM UTC in WHO'S THAT POKÉMON!?
-
2015-09-22 at 4:10 PM UTC in WHO'S THAT POKÉMON!?Or what? :p
-
2015-09-22 at 2:59 PM UTC in Your mom is so homelessITT SpectraL tells another urban legend like he was there when it happened.
-
2015-09-22 at 1:44 PM UTC in "Welcome to Zoklet!"
dr
Of course you read it. That's just stupid. No optimism just stupid. -
2015-09-22 at 1:41 PM UTC in **OFFICIAL RANDOM THOUGHTS POEMS AND RAMBLINGS THREAD**i stepped on a lego
-
2015-09-22 at 1:35 PM UTC in "Welcome to Zoklet!"
Uhhh… yes.
Optimistic sort I see, stupid but optimistic. -
2015-09-22 at 1 PM UTC in Do you use Chrome?
I tried it on Opera. If you hover or click the link, it crashes the page and makes you have to reload the page.
Now try it on a real computer.