What's new

Skynet PayPal is being blocked.

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

@Adamm
Is there a way just to whitelist www-fastly.glb.paypal.com in one go without doing individual IPs?
 
I already mentioned that the Fastly CDN is whitelisted automatically in Skynet if CDN whitelisting is enabled. This includes 151.101.192.0/22. I would focus on determining if your CDN whitelisting is working and able to fetch the whitelists from api.hackertarget.com.
Bash:
admin@router:/tmp/mnt/apps/skynet# grep -F "151.101.192" skynet.ipset
add Skynet-Whitelist 151.101.192.0/22 comment "CDN-Whitelist: AS54113"
admin@router:/tmp/mnt/apps/skynet# grep cdnwhitelist skynet.cfg
cdnwhitelist="enabled"
 
I already mentioned that the Fastly CDN is whitelisted automatically in Skynet if CDN whitelisting is enabled. This includes 151.101.192.0/22. I would focus on determining if your CDN whitelisting is working and able to fetch the whitelists from api.hackertarget.com.
Bash:
admin@router:/tmp/mnt/apps/skynet# grep -F "151.101.192" skynet.ipset
add Skynet-Whitelist 151.101.192.0/22 comment "CDN-Whitelist: AS54113
admin@router:/tmp/mnt/apps/skynet# grep cdnwhitelist skynet.cfg
cdnwhitelist="enabled"
Like i said i've re-installed CDN whitelisting is already enabled by default. I haven't touched a thing. I'm only telling you what the logs are reporting back. Unless the logs are incorrect it seems we're going around in circles.
 
Like i said i've re-installed CDN whitelisting is already enabled by default. I haven't touched a thing. I'm only telling you what the logs are reporting back. Unless the logs are incorrect it seems we're going around in circles.
Post the output of those two commands if you really want to solve this. Adamm doesn't maintain the content of the lists, so there's not a lot for him to do with this problem in my opinion.

Can you browse to this list used to populate the whitelist?
 
Untitled.png

That link just defaults to a page with "
API count exceeded - Increase Quota with Membership"
 
That link just defaults to a page with "
API count exceeded - Increase Quota with Membership"
So that's why your whitelists are incomplete. The site that hosts the lists is limiting requests, which has been a problem with a popular script like Skynet.
 
Don't understand why no-one else but two people are experiencing this issue... So basically to the users that it works for are physically opening up a Chrome / Firefox tab and going www.paypal.com and not getting any timeout errors. We've provided how many logs yet no simple solution

So the only sulution is either to disable Skynet or remove it just to get around the issue or whitelist all blocked IPs manually until a fix is found?
 
In other parts of the script, Adamm had created a semi-random User Agent string that may have worked around such a limit with other providers. Maybe a similar approach would work here. But you'd need @Adamm for that change.

Try running this command to see if it takes:
Code:
firewall whitelist asn AS54113
If it fails, try again at random times. Or force your WAN IP to change somehow. Not sure.
 
In other parts of the script, Adamm had created a semi-random User Agent string that may have worked around such a limit with other providers. Maybe a similar approach would work here. But you'd need @Adamm for that change.

Try running this command to see if it takes:
Code:
firewall whitelist asn AS54113
If it fails, try again at random times. Or force your WAN IP to change somehow. Not sure.
Just ran it through TOR and a VPN still the same results, so i don't think an IP change will fly.
 
In other parts of the script, Adamm had created a semi-random User Agent string that may have worked around such a limit with other providers. Maybe a similar approach would work here. But you'd need @Adamm for that change.

Try running this command to see if it takes:
Code:
firewall whitelist asn AS54113
If it fails, try again at random times. Or force your WAN IP to change somehow. Not sure.
It looks like despite not being able to access the page, skynet will still take the whitelist command. My whitelist appears to be much larger now after running your command.
 
Another option is to try this manually one-time as a proof-of-concept:
Bash:
curl -fsL --retry 3 --connect-timeout 3 -A "ASUSWRT-Merlin RT-N66U v$(nvram get buildno)_$(nvram get extendno) / $(tr -cd 0-9 </dev/urandom | head -c 20)" "https://api.hackertarget.com/aslookup/?q=AS54113" | grep -oE '([0-9]{1,3}\.){3}[0-9]{1,3}/[0-9]{1,2}' | awk -v asn="AS54113" '{printf "add Skynet-Whitelist %s comment \"CDN-Whitelist: %s\"\n", $1, asn }' | ipset restore -!
I set the model as N66U since it can't run skynet and would not be a common UA String.
 
Another option is to try this manually one-time as a proof-of-concept:
Bash:
curl -fsL --retry 3 --connect-timeout 3 -A "ASUSWRT-Merlin RT-N66U v$(nvram get buildno)_$(nvram get extendno) / $(tr -cd 0-9 </dev/urandom | head -c 20)" "https://api.hackertarget.com/aslookup/?q=AS54113" | grep -oE '([0-9]{1,3}\.){3}[0-9]{1,3}/[0-9]{1,2}' | awk -v asn="AS54113" '{printf "add Skynet-Whitelist %s comment \"CDN-Whitelist: %s\"\n", $1, asn }' | ipset restore -!
I set the model as N66U since it can't run skynet and would not be a common UA String.
:D As proof of concept, I need to stop distracting you from that awesome FlexQoS. You are brilliant.
 
Does that one piece of code work then? If that's the case i'll re-install Skynet and just use that code.
 

Latest threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top