ls /usr/bin/python*
sudo apt-get remove python3.5
sudo apt-get remove --auto-remove python3.5
sudo apt-get purge python3.5
import os | |
import time | |
import uuid | |
import requests | |
from PIL import Image | |
from selenium import webdriver | |
from selenium.webdriver.common.by import By | |
from selenium.common.exceptions import NoSuchElementException, TimeoutException, StaleElementReferenceException | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.webdriver.support import expected_conditions as EC |
#!/bin/bash | |
# We don't need return codes for "$(command)", only stdout is needed. | |
# Allow `[[ -n "$(command)" ]]`, `func "$(command)"`, pipes, etc. | |
# shellcheck disable=SC2312 | |
set -u | |
abort() { | |
printf "%s\n" "$@" >&2 |
Crieteria Checklist | |
Information Gathering Manually explore the site | |
Spider/crawl for missed or hidden content | |
Check for files that expose content, such as robots.txt, sitemap.xml, .DS_Store | |
Check the caches of major search engines for publicly accessible sites | |
Check for differences in content based on User Agent (eg, Mobile sites, access as a Search engine Crawler) | |
Perform Web Application Fingerprinting | |
Identify technologies used | |
Identify user roles | |
Identify application entry points |
<clickhouse> | |
<async_insert>1</async_insert> | |
<async_insert_max_data_size>100000000</async_insert_max_data_size> | |
</clickhouse> |
#include<iostream> | |
using namespace std; | |
int main(){ | |
//Normal variable declartaion which have value 10. | |
int i = 10; | |
//pointer declaration of int type and store the address of i variable | |
int *p = &i; | |
// value of i is 10 | |
cout<<i; | |
//here p is pointer so it will print the address of i |
#include<iostream> | |
using namespace std; | |
int main(){ | |
int i = 10; | |
i = i +1 ; | |
cout<<i; | |
cout<<&i; | |
return 0; | |
} |
#include<iostream> | |
using namespace std; | |
int main(){ | |
int i = 10; | |
i = i + 10; | |
return 0; | |
} |
#include<iostream> | |
using namespace std; | |
int main(){ | |
int i = 10; | |
return 0; | |
} |
1.Data is in name-value pairs. | |
"name": "john Gupta" | |
2. Commas always separate data. | |
"name": "john Gupta", "age": 12 | |
3. Curly braces always hold the objects. | |
{ "name" : "john Gupta" , "age" : 12 } | |
4. Square brackets always hold an array. | |
employees":[ | |
{ "firstName":" John", "Lastname":" Gupta" }, | |
{ "firstName":"Anna", "last name:"Shrivastava" }, |