Another way would be to open the command line and type the following commands: RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255 (Deletes ALL History) RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1 (Deletes History Only) RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2 (Deletes Cookies Only) RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8 (Deletes Temporary Internet Files Only) RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16 (Deletes Form Data Only) RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32 […]
Dagelijkse archieven: 16 februari 2022
Om SSO in te schakelen voor Remote Desktop Services moeten de volgende wijzigingen in het register gemaakt worden: Windows Registry Editor Version 5.00 HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindowsCredentialsDelegation “AllowDefaultCredentials”=dword:00000001 “ConcatenateDefaults_AllowDefault”=dword:00000001 “AllowDefCredentialsWhenNTLMOnly”=dword:00000001 “ConcatenateDefaults_AllowDefNTLMOnly”=dword:00000001 HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindowsCredentialsDelegationAllowDefaultCredentials “1″=”TERMSRV/*.DOMEIN” HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindowsCredentialsDelegationAllowDefCredentialsWhenNTLMOnly “1″=”TERMSRV/*.DOMEIN” HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlLsa “Security Packages”=hex(7):6b,00,65,00,72,00,62,00,65,00,72,00,6f,00,73,00,00, 00,6d,00,73,00,76,00,31,00,5f,00,30,00,00,00,73,00,63,00,68,00,61,00,6e,00, 6e,00,65,00,6c,00,00,00,77,00,64,00,69,00,67,00,65,00,73,00,74,00,00,00,74, 00,73,00,70,00,6b,00,67,00,00,00,00,00 HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlSecurityProviders “SecurityProviders”=”msapsspc.dll, schannel.dll, digest.dll, msnsspc.dll, credssp.dll”
The open-source Linux operating system contains a serious security flaw that can be exploited to gain superuser rights on a target system. The vulnerability, in the Linux implementation of the Reliable Datagram Sockets (RDS) protocol, affects unpatched versions of the Linux kernel, starting from 2.6.30, where the RDS protocol was […]
Ga naar: navigatie, zoeken NAME htpasswd – Create and update user authentication files SYNOPSIS htpasswd [ -c ] [ -m | -d | -s | -p ] passwdfile username htpasswd -b [ -c ] [ -m | -d | -s | -p ] passwdfile username password htpasswd -n [ -m […]
ps aux overzicht van de connecties naar de server of serverapplicaties netstat -an | grep LISTEN netstat -atup netstat -atup | grep LISTEN -t : Select all TCP services -u : Select all UDP services -a : Display all listening and non-listening sockets. -p : Display the PID and name […]
# cat /proc/meminfo verkort overzicht van het geheugen # free -k, -m, -g (kilobyte, megabyte, gigabyte)
netstat -na Display all active Internet connections to the servers and only established connections are included. netstat -an | grep :80 | sort Show only active Internet connections to the server at port 80 and sort the results. Useful in detecting single flood by allowing users to recognize many connections […]
Most operating systems have some method of displaying CPU utilization. In Windows, this is Task Manager. CPU usage is generally represented as a simple percentage of CPU time spent on non-idle tasks. But this is a bit of a simplification. In any modern operating system, the CPU is actually spending […]