Mac High Sierra : Adobe CS5 – install” can’t be opened. you should eject the disk image.
I was trying to install Adobe CS5 in my Imac 2011 – running High Sierra. When i clicked on the…
I was trying to install Adobe CS5 in my Imac 2011 – running High Sierra. When i clicked on the…
Smokeping is a great tool for network monitoring, we recently adopted smokeping to use it for URL monitoring. We use…
Mitmproxy is a python proxy, it’s very light. Basically it’s like a normal proxy but it offers some advanced features…
nmap –script ssl-enum-ciphers -p 443 www.google.com you can test your script to see the difference. Here are some url that…
$pfx_file="mywindows_cert.pfx"; $password="dailyithlep"; $pem_file="mypem_cert.pem"; convert_pfx_file_to_pem($pfx_file,$password,$pem_file,true); function convert_pfx_file_to_pem($pfx_file,$password,$pem_file,$remove_password=true) { $CERT_FILE="/tmp/certificate.crt"; $CA_CERT_FILE="/tmp/ca-cert.crt"; $PRIVATE_KEY="/tmp/private.key"; $PRIVATE_KEY_NOPASSWORD="/tmp/private_nopassword.key"; //get the certificate file from pfx file $cmd=”openssl pkcs12…
Curl can provide us the following time report: time_namelookup time_redirect time_connect time_appconnect time_pretransfer time_starttransfer time_total To get these report time,…
When you setup a cronjob file (/etc/cron.d/filename) , the file should include the path below: PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin:/root/bin this is because if…
You can use the option : 2>&1 for this purpose. /mycommand.sh 2>&1 | mydescommand.sh
A sample function to use curl post data. $data=array() $data=array(); $data[“field1″]=”hello world”; $data[“user”]=”hello user”; curl_post($url,$data) function curl_post($url,$fields) { //open connection…
The service record for ldap and kerberos are used to identify LDAP and Kerberos server for a domain in Active…