ultrasecurity / Storm-Breaker

Social engineering tool [Access Webcam & Microphone & Location Finder] With {Py,JS,PHP}
https://ultraamooz.com
3.05k stars 1.15k forks source link

I was reading the code and I think this is an mistake. #327

Open Unknow-per opened 2 months ago

Unknow-per commented 2 months ago

In banner.banner you writes

`

  if OsName == "Windows":

        os.system("cls")

   else:

        os.system("clear")

`

And this is for Linux, Mac, and Windows. But in control.kill_php_proc you writes

`

  for i in pid:

          subprocess.getoutput(f"kill -9 {i}")

`

And this is just for Linux/Mac. Please check it.

Thanks. By a good programmer.