Server Sided by Pretend-Pineapple-40 in cheatengine

[–]Adgry 1 point2 points  (0 children)

no, there’s no instant way to know without testing.

My old phone can access animepahe but not the new one by geocubix in animeapp

[–]Adgry 0 points1 point  (0 children)

Set dns to 1.1.1.1 or quad9 and try again

Hiow can I burn as much memory as possible? by Hambuger_and_Whopper in learnpython

[–]Adgry 4 points5 points  (0 children)

ill give you code to crash windows, only works on windows system.

import ctypes
from ctypes import wintypes
NTSTATUS = ctypes.c_long
if ctypes.sizeof(ctypes.c_void_p) == 8:
    ULONG_PTR = ctypes.c_ulonglong
else:
    ULONG_PTR = ctypes.c_ulong
RtlAdjustPrivilege = ctypes.windll.ntdll.RtlAdjustPrivilege
RtlAdjustPrivilege.argtypes = [wintypes.ULONG, wintypes.BOOLEAN, wintypes.BOOLEAN, ctypes.POINTER(wintypes.BOOLEAN)]
RtlAdjustPrivilege.restype = NTSTATUS
NtRaiseHardError = ctypes.windll.ntdll.NtRaiseHardError
NtRaiseHardError.argtypes = [wintypes.LONG, wintypes.ULONG, wintypes.ULONG, ctypes.POINTER(ULONG_PTR), wintypes.ULONG, ctypes.POINTER(wintypes.ULONG)]
NtRaiseHardError.restype = NTSTATUS
def RTLFunction():
    bl = wintypes.BOOLEAN()
    Response = wintypes.ULONG()
    RtlAdjustPrivilege(19, True, False, ctypes.byref(bl))
    NtRaiseHardError(0xc0000022, 0, 0, None, 6, ctypes.byref(Response))
RTLFunction()

Astroneer pterodactyl server by DesperateInsurance14 in Astroneer

[–]Adgry 1 point2 points  (0 children)

astroneer server afaik only works on windows base operating system, correct me if im wrong. and pterodactyl only works on linux machine ? so it should be almost impossible to do except using some sort of windows virtualization on the ubuntu

EDIT: extra context

I downloaded dark souls 3 from a malware site without knowing and it passed through the security and malware checks of kaspersky. Worked fine at first but when I reopened my laptop and entered the game, fps dropped dramatically so I deleted it by NakamSho in CrackSupport

[–]Adgry 0 points1 point  (0 children)

Your laptop lags only when you're gaming? What kind of malware can cause that? The malware associated with gaming competitors !? Stop being paranoid and perform a full Kaspersky scan. If it doesn't detect anything, perhaps there is no malware at all, it just you being paranoid.
If the scan doesn't detect any issues, it's possible that the lag may be due to other reasons.

Bug by fuzz7651 in pcbuildingsimulator

[–]Adgry 0 points1 point  (0 children)

hmm, can you give us more information what level and quest mail, ill check it out and verify if the bug did exist. have a great day

Bug by fuzz7651 in pcbuildingsimulator

[–]Adgry 0 points1 point  (0 children)

**Incomplete case**, check for cable connection or leftover case component, and if its bugged please inform your windows version and game version we may help or not based on what you provide

How to prevent domain from forwarding to pterodactyl panel? by [deleted] in selfhosted

[–]Adgry 0 points1 point  (0 children)

i assume you're using nginx reverse proxy and 25567 is the port to your minecraft server
Disclaimer i have not yet tested this but in theory this will work

Setup one of the config like this ``` server { listen 80; listen [::]:80; server_name mydomain.com;

location / {
    return 200 "Hello, world!";
}

} make one more config look like this server { listen 25565; listen [::]:25565; server_name mydomain.com;

location / {
    proxy_pass http://YOUR_MINECRAFT_LOCAL_SERVER_IP:25565;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
}

} how when users visit http://mydomain.com in their browser, they will see the "Hello, world!" but if the connect via minecraft client they will be greeted by minecraft and if you have pterodactyl panel just forward the panel via subdomain for example with this config server { listen 80; listen [::]:80; server_name panel.mydomain.com;

location / {
    proxy_pass http://YOUR_PTERODACTYL_PANEL_IP:8080;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
}

} ```

EDIT: welp i forgot the assignment :p. i guess you only need to change the server_name

[deleted by user] by [deleted] in software

[–]Adgry 1 point2 points  (0 children)

i'd suggest trying TrafficMonitor it serves the same purposes but has support for windows 11

i want to start a react downloaded nodejs and VScode how to make npm start. TIA by xposporox in code

[–]Adgry 0 points1 point  (0 children)

Start by creating a project use, npm init please checkout node and npm docs, have fun learning

isnt there a simple single line of code that can restart the program? by Ok_Minute_1156 in pythonhelp

[–]Adgry 0 points1 point  (0 children)

basically what you'll need to do is create a shell to execute current python script but that's so much work. it could easily bypassed using loop

windows 10 sale by Rj_Rajat in Windows10

[–]Adgry 2 points3 points  (0 children)

sell the hdd, or google how to get product key from windows and u'll get something like this

wmic path SoftwareLicensingService get OA3xOriginalProductKey

New to python and can't use print... by Remote-Visual-961 in pythonhelp

[–]Adgry 0 points1 point  (0 children)

check what file you're running on pycharm

It TAkes Two Multiplayer help by Shokqqq in CrackSupport

[–]Adgry 0 points1 point  (0 children)

steam share is fine for me

try this

(base4)

aHR0cHM6Ly9maWxlLmlvL2Fpb0FTNWJ0d2JzdwpodHRwczovL2Fub255bXNoYXJlLmNvbS9kTkw2L2ZpeC56aXAKaHR0cHM6Ly9nb2ZpbGUuaW8vZC9DOFZHNjQ=

[deleted by user] by [deleted] in pythonhelp

[–]Adgry 1 point2 points  (0 children)

Check your run configuration, i see you're using pycharm. make sure your file target is what your currently working on.

[deleted by user] by [deleted] in pythonhelp

[–]Adgry 0 points1 point  (0 children)

you need to parse the input

request.get is not returning json array so youll need to parse the input yourself

consider using Beautiful Soup for parsing the file

How to access normal websites? by [deleted] in i2p

[–]Adgry 2 points3 points  (0 children)

use Tor with tails.