User Controls
Thanked Posts by Sophie
-
2018-04-22 at 10:42 PM UTC in Posters you would make sweet love to...WHO IS THIS SOPHIE WOMAN ANYWAY, HUH!?
WHAT IS SHE TO YOU?
Honey I swear Sophie is a guy!
YEAH RIGHT AND I'M SANTA CLAUS -
2018-06-07 at 9:41 PM UTC in Sometimes i like to listen to Jazz Noir.Also, France has never been cultured. It is and always has been a shit country. Maybe during the days of Charlemagne they were alright.
The wine drinking countries ain't shit. The beer drinking countries are better. Besides, Paris, is little more than a refugee camp these days. -
2018-06-07 at 7:28 PM UTC in is there any OG NIS here who is not an unemployed druggie loser??
Originally posted by aldra lol, welfare recipient ripping on taxpayer for low pay. talk about a self-defeating argument
again though, compare the cost of living for where §m£ÂgØL is to the UK. as a general rule, unless you're in one of the top tax brackets, people in the US get paid significantly less but also pay a lot less for essentials like rent, food and guns
I like how you put "guns" there under the category "essential". -
2018-06-07 at 2:28 PM UTC in Make mine *and others* posts private! :)
-
2018-06-07 at 2:07 PM UTC in Make mine *and others* posts private! :)
Originally posted by -SpectraL Andre Cicero was the FBI cyber agent assigned to the Henderson case. The CIC was a completely different person, an investigator from the Coupon Information Center. I traced both their IPs, and they were different, and they both led back to their respective home bases.
You should be a guest star in some cop show where they have their computer "expert" talk about some pretty cyber sounding stuff. You´d be perfect for the role. -
2018-06-07 at 2:39 PM UTC in Make mine *and others* posts private! :)
-
2018-06-07 at 3:04 PM UTC in Who else is jobless in their mid-20's/older?
-
2018-06-07 at 3:03 PM UTC in New user helpThis nigga...
-
2018-06-06 at 4:49 PM UTC in Need some new CompSci related reading materials?Sending you a PM right now.
-
2018-06-06 at 4:09 PM UTC in Need some new CompSci related reading materials?
Originally posted by NARCassist i wouldn't mind having a look at the following please:
btw, i know its unrelated to CompSci, but would you be interested in a really fascinating ebook on non-verbal communication. basically its all about how you can read body language and pick up on tells to see what people are thinking and when they are being deceptive etc. its written by some ex fbi profiler guy and is full of so much useful information. some of it so obvious once its pointed out to you yet you never really think about it, lol.
dl here if you are, its seriously worth a look, i bet you'll be as fascinated as i am. its really well written too.
https://www.semperfidelis.ro/request.php?116
.
I'll have a gander. Give me a sec while i zip up the materials you requested. -
2018-06-02 at 1:33 AM UTC in Is this a SQL security issue on my website?>.gov
>your site -
2015-06-25 at 2:41 AM UTC in Well... I'm HereYeeee we all here, OGBloodcomptonnigga shit. We in da hood nigga, lan lan one real ass trill ass homie.
-
2018-06-01 at 11:27 PM UTC in so my laptop tells me Ive been being attacked ever since i started posting on this sitePedophile tech support here. You have cyber aids.
Download one of these
www.lifewire.com/free-bootable-antivirus-tools-2625785
Burn the ISO file to a CD/DVD.
Restart your PC and smash F2, F12, DEL, or whichever button is appropriate for your motherboard to go into the boot order menu. Once there select boot from disk and run that shit. If you can't figure the rest out yo deserve cyber aids.
If you don't have CD/DVD's laying around, flash the ISO to an USB stick with a program called Rufus, Google it. Then follow the same steps. But now you set the boot order to USB first. -
2018-06-01 at 11:56 PM UTC in EmpathyIDK, even if you don't feel empathy, should you just hurt people for the sake of it? Are there any comorbidities present? Like sadism? Or narcissism?
Does what you want and feel outweigh what others want and feel? How can you tell if you don't have empathy? What does it mean to be good? What does it mean to be evil?
I don't know the answers to these questions but i find myself often pondering them. -
2018-06-01 at 10:40 PM UTC in guess the person above you's age, sex and sexual preferencewas meat for Jill Valentine.
Jill the cat is 88, Male, Hard Gay -
2018-05-27 at 1:28 PM UTC in Windows is a shit OS but i got something for you that'll make it better.All the T&T regulars know i don't like Windows for multiple reasons. One of the biggest being that you basically have no privacy with the OS. Like, at all. They collect data about you and there is constant telemetry going from your Windows Box to Microsoft servers and back. It's basically malware.
That said, i was with a friend of mine over the weekend and he has Windows on his PCs, needless to say i almost literally got cancer. However it did inspire me to make somewhat of a cure.
I combined some stuff, and scripted some stuff. In Batch even, i'm pretty bad with Batch i ain't gonna lie. But anyway, see the code block below for details. Now one last thing, i didn't do any thorough testing on it or anything, i just felt like making it. As far as the code goes, i am pretty sure it works though and i figured i'd share.
@ECHO off
color a
echo "Welcome, we're going to try to get Windows to stop spying"
echo "on you and try to make it generally less annoying."
echo "We'll first borrow some PowerShell functionality in order"
echo "to elevate the script's privs to Admin. With those privs"
echo "we will download PsExec and our other resources to the"
echo "System32 directoy."
echo "There they will be unzipped so that we can invoke our tools
echo "from the command line, or in this case a batch script, easily."
echo
echo "After each PowerShell operation i have a 'pause' statement"
echo "It's so you have a second to read if all went well thus far."
echo
echo "Anyway, after all of that the script will write out a second"
echo "Batch file, this Batch file contains the commands that will"
echo "make positive adjustments to your OS, like getting rid of needless"
echo "updates. And some things like Telemetry services that send your"
echo "data to Microsoft servers. Here is where PsExec comes in."
echo "Since it allows us to get NT Authority\System privs not even
echo "Windows itself can get rid of the changes we applied. And well"
echo "Just to be sure, we'll also add a Scheduled Task, that will"
echo "basically do everything i mentioned automatically, every week.
echo
echo "Well then... Whenever you're ready.
echo
pause
REM Get admin privs
powershell -Command "Start-Process powershell.exe -Credential 'USERDOMAIN\User' -NoNewWindow -ArgumentList 'Start-Process powershell.exe -Verb runAs Administrator'"
echo
pause
REM Off to the system32 directory we go
cd %SYSTEMROOT%\system32
REM Download the collection of 'BlockWindows' scripts we need
powershell -Command "(New-Object Net.WebClient).DownloadFile('https://github.com/WindowsLies/BlockWindows/archive/master.zip', 'master.zip')"
echo
pause
REM Lastly we download PSTools, among which PsExec will be the most interesting to us
powershell -Command "(New-Object Net.WebClient).DownloadFile('https://download.sysinternals.com/files/PSTools.zip', 'PSTools.zip')"
echo
pause
unzip master.zip
unzip PSTools.zip
REM Here we write our secondary Batch script out
echo "@ECHO off" >> autoblock.bat
echo "echo 'Invoking all auto-blocker scripts.'" >> autoblock.bat
echo "pause" >> autoblock.bat
echo "call BlockWindows.bat" >> autoblock.bat
echo "call hosts.bat" >> autoblock.bat
echo "call hosts2.bat" >> autoblock.bat
echo "cmd /C 'DisableGWX.reg'" >> autoblock.bat
echo "cmd /C 'DisableWiFiSense.reg'" >> autoblock.bat
echo "cmd /C 'HideWindowsUpdates.vbs'" >> autoblock.bat
REM This operation creates an automated, scheduled task, to run the script we wrote out above once a week
SchTasks /Create /SC WEEKLY /D MON /TN “Run MS Blocker Weekly” /TR “%SYSTEMROOT%\system32\autoblock.bat” /ST 09:00
REM To conclude, we have PsExec here
REM Starting an instance of the Windows
REM Shell with System privs, and
REM executing the command that will
REM fuck Microsoft's shit up fam
psexec -s -i cmd.exe /C "start autoblock.bat"
echo "If everything went right, we should be done."
echo "Whenever you're ready, friend."
pause
exit -
2018-05-27 at 10:10 PM UTC in Userscript to block users on niggasin.space
Originally posted by MORALLY SUPERIOR BEING Why? Excluding people is a necessary part of life, and the tools to do that - like walls - are just tools.
I guess enjoy reading "I will buttfuck you" and "post nudes" ten times in every thread.
If i desire to ignore someone i have the mental fortitude to do so without any outside aid. Besides, if you block some people, threads will make less sense when there are posts missing, -
2018-05-27 at 2:24 PM UTC in Windows is a shit OS but i got something for you that'll make it better.
Originally posted by Grimace Question: Do you know how BlockWindows holds up to some of Microsoft's latest Windows 10 builds? The project seems a bit dead on GitHub. Looks like it hasn't been updated since the release of Windows 10. So pretty much any major update to Windows 10 like the Anniversary Update, Fall Creators Update, or Spring Creators Update probably negates what this script is intended to do, yeah? I can see someone asking to add choice.microsoft.com.nstac.net to the hosts file, as it's another telemetry server in late 2017 (around the Fall Creator's Update release). There are probably more with the Spring Creator's Update.
It worked kind of meh against Win10 when the project was still fresh. Win10 is pretty much actual fucking malware. Whenever i do have to work with Windows, in VM or otherwise i am usually working with Win7. -
2018-05-25 at 6:03 PM UTC in The Retardest Thread: Fashionably Late Edition.
Originally posted by Malice
It's nice to know you could go peacefully any day. There's no fear of pain or failure, it's exactly like falling asleep and never waking up again. The arguments even the vast majority of people to against suicide or to attribute a negative value to death are painfully moronic.
Good way to waste perfectly good barbiturates. -
2016-12-10 at 8:10 PM UTC in Life is hard when you're as 31337 as i am.Take this test see if you're as 31337 as Sophie.
----------------
[ ] QUIT IRCING
[ ] QUIT SITTING THERE
[ ] QUIT GOING TO SCHOOL
[ ] QUIT YOUR JOBS
[ ] STEAL FOR A LIVING
[ ] ROB WHITEHATS OF THEIR LAPTOPS
[ ] GO SELL BLOOD PLASMA TO PAY FOR FOOD
[ ] ONLY EAT CHEAP TACOS
[ ] LIVE AT THE LIBRARY
[ ] HACK FROM THE LIBRARY
[ ] STEAL ADMIN ACCESS
[ ] STEAL BOOKS DAILY AND PAWN THEM
[ ] STEAL PEOPLE'S WALLETS
[ ] USE THEM FOR IDENTITY THEFT AND TO BUY MORE TACOS
[ ] GO AND HACK SOME BITCHES
[ ] SCAN SECURITY COMPANY NETWORKS DAILY
[ ] PASSWORD GUESS EVERY ACCOUNT YOU CAN
[ ] SOCIAL ENGINEER USERS AND ADMINS
[ ] LIE TO EVERYONE YOU KNOW
[ ] START WARS AMONG THE SECURITY INDUSTRY
[ ] HACK RANDOM BOXES AND WAIT FOR OTHERS TO HACK THEM
[ ] OWN EVERYTHING
[ ] RM EVERYONE WHO SPAMS
[ ] RM EVERYONE WHO MAKES MONEY FROM SECURITY
[ ] RM EVERYONE WHO HELPS OTHERS MAKE MONEY FROM SECURITY
[ ] CONVERT OTHERS TO BLACKHAT
[ ] DO NOT TALK TO PRESS
[ ] MAKE UP RUMORS AND SPREAD THEM
[ ] DUMPSTER DIVE AT SECURITY COMPANIES
[ ] BREAK INTO WHITEHATS HOUSES
[ ] TAP WHITEHAT'S PHONES, FAXES, AND STEAL THEIR MAIL
[ ] AUDIT CODE EVERYDAY
[ ] DO NOT TELL OTHERS OF YOUR VULNERABILITIES
[ ] MAKE FUN OF WHITEHATS
[ ] MAKE FAKE EXPLOITS
[ ] EMAIL BOMB EVERYONE ON FULL DISCLOSURE
[ ] BACKDOOR ANY SOFTWARE YOU CAN AND DISTRIBUTE IT
[ ] GET RID OF YOUR GIRLFRIEND
[ ] GET RID OF YOUR FAMILY
[ ] CONCENTRATE ON OWNING
[ ] HAVE NO REMORSE
[ ] JOIN WHITEHAT GROUPS AND GAIN TRUST
[ ] RM THEM WHEN YOU HAVE ACCESS
[ ] DONT LET PEOPLE FUCK WITH YOU
[ ] DO NOT NARC
[ ] DO NOT TALK TO NARCS
[ ] RM NARCS
[ ] IMPROVE OPEN SOURCE CODE AND SUBMIT IT WITH BACKDOORS
[ ] CONVINCE YOUR FRIENDS TO COMMIT MAYHEM
[ ] SELL YOUR TV
[ ] DONT WASTE TIME PLAYING GAMES
[ ] SNIFF EVERY NETWORK YOU HAVE ACCESS TO
[ ] SELL DRUGS TO THE KIDS OF WHITEHATS
[ ] THREATEN WHITEHATS WITH LAW SUITS
[ ] BECOME A WHITEHATS ONLINE GIRLFRIEND
[ ] SET UP LOGGING PROXIES AND POST THEM TO PUBLIC
[ ] REMEMBER THAT ALL WHITEHATS SMELL
[ ] REPORT ALL EMAIL FROM SECURITY COMPANIES AS SPAM
[ ] FLOOD ALL IRC CHANNELS
[ ] FIND PHONE NUMBERS FOR ALL PEOPLE IN SECURITY
[ ] GIVE KIDS SLINGSHOTS AT DEFCON
---------------- TOTAL POINTS: [ ] ----------------
DID YOUR SCORE COMPARE WITH Sophie's?
0 - 5 : WHITEHAT
1 -10 : NEWBIE
10-20 : HELPFUL
20-30 : DANGEROUS
30-40 : BLACKHAT
40-50 : DEADLY
50-60 : BOW/HAGIS/~EL8/CITADEL/PHC
61 : Sophie.
Post last edited by Sophie at 2016-12-10T20:14:17.831049+00:00