graph TB
subgraph Client
A[User Upload IFC File]
end
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<clickhouse> | |
<async_insert>1</async_insert> | |
<async_insert_max_data_size>100000000</async_insert_max_data_size> | |
</clickhouse> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
using namespace std; | |
int main(){ | |
int i = 10; | |
i = i +1 ; | |
cout<<i; | |
cout<<&i; | |
return 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
using namespace std; | |
int main(){ | |
int i = 10; | |
i = i + 10; | |
return 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
using namespace std; | |
int main(){ | |
int i = 10; | |
return 0; | |
} |
NewerOlder