Skip to content

Instantly share code, notes, and snippets.

View tbvinh's full-sized avatar
🧑‍🍼
I may be slow to respond.

Vinh Tran tbvinh

🧑‍🍼
I may be slow to respond.
  • Ho Chi Minh - Vietnam
View GitHub Profile
#!/bin/bash
## wget -O delete-site.sh https://gist.githubusercontent.com/tbvinh/2a1b230ff4a57a8436420d1607fdf017/raw/delete-site.sh?rnd=`date +%s`
## usage: delete mysql, user and its home folder
##
if [ $# -eq 0 ]
then
echo "No arguments supplied, e.g: $0 username"
exit 0
fi
#!/bin/sh
## wget -O install-lamp-linux.sh https://gist.githubusercontent.com/tbvinh/af7ba1fda3484fc45f99adaeab88885e/raw/install-lamp-linux.sh?rnd=`date +%s`
mysqlrootpass=`date |md5sum |cut -c '1-12'`
apt-get -y update # && apt-get -y upgrade
apt-get -y install software-properties-common
add-apt-repository ppa:ondrej/apache2
add-apt-repository ppa:ondrej/php
@tbvinh
tbvinh / wildcard ssl.txt
Created December 12, 2022 15:00
wildcard ssl letsencrypt
https://codex.so/wildcard-ssl-certificate-by-let-s-encrypt
bước 1:
$DOMAIN=myoser.com
Bước 2:
certbot certonly --manual -d *.$DOMAIN -d $DOMAIN --agree-tos --manual-public-ip-logging-ok --preferred-challenges dns-01 --server https://acme-v02.api.letsencrypt.org/directory --register-unsafely-without-email --rsa-key-size 4096
bước 2.1: đăt TXT domain value: xxx
@tbvinh
tbvinh / README-apache-balancer-with-stickysession.md
Last active November 25, 2022 06:10 — forked from drmalex07/README-apache-balancer-with-stickysession.md
Setup apache as a load balancer with sticky sessions. #apache #balancer #stickysession
@tbvinh
tbvinh / Create jks, cert, key for a domain cskh.mobi.txt
Created August 11, 2022 05:37
Create jks, cert, key for a domain cskh.mobi
domain=cskh.mobi
#create jks
keytool -genkey -alias ${domain}.alias -keyalg RSA -deststoretype pkcs12 \
-storepass changeit -keysize 2048 -keystore ${domain}.jks \
-dname "CN=${domain}, OU=Unknown, O=Unknown, L=Unknown, ST=Unknown, C=US"
#view alias
keytool -v -list -keystore ${domain}.jks -storepass changeit | grep "Alias name\|Valid from:"
#export p12 base on domainalias
@tbvinh
tbvinh / php curl.txt
Created July 14, 2022 10:05
PHP curl SSL
https://stackoverflow.com/questions/28858351/php-ssl-certificate-error-unable-to-get-local-issuer-certificate
Download the certificate bundle. (https://curl.haxx.se/docs/caextract.html)
Put it somewhere. In my case, that was c:\wamp\ directory (if you are using Wamp 64 bit then it's c:\wamp64\).
Enable mod_ssl in Apache and php_openssl.dll in php.ini (uncomment them by removing ; at the beginning). But be careful, my problem was that I had two php.ini files and I need to do this in both of them. One is the one you get from your WAMP taskbar icon, and another one is, in my case, in C:\wamp\bin\php\php5.5.12\
Add these lines to your cert in both php.ini files:
@tbvinh
tbvinh / setup MQTT.txt
Last active June 28, 2022 15:57
setup MQTT
sudo apt-get install mosquitto mosquitto-clients
sudo systemctl start mosquitto
https://developer.ibm.com/articles/iot-mqtt-why-good-for-iot/
http://www.steves-internet-guide.com/mosquitto_pub-sub-clients/
http://www.steves-internet-guide.com/using-javascript-mqtt-client-websockets/
Consle #1
mosquitto_sub -t "#my_device_id" -h test.mosquitto.org
@tbvinh
tbvinh / java leak.txt
Last active December 10, 2021 01:47
jstatd leak memory java
1. Create policy
vi /etc/java-8-openjdk/security/tools.policy
grant codebase "file:/usr/lib/jvm/java-8-openjdk-amd64/lib/tools.jar" {
permission java.security.AllPermission;
};
2. run JSTATD
jstatd -J-Djava.security.policy=/etc/java-8-openjdk/security/tools.policy
3. Show the port
@tbvinh
tbvinh / build.xml
Created November 22, 2021 04:57 — forked from greghelton/build.xml
ANT: Project for Managing a SQLite Database
<project name="sqlite" basedir="." default="echo">
<property name="sqldriver.jar" value="${user.home}/dev/bin/sqlite/sqlitejdbc-v056.jar"/>
<property name="db.name" value="programmers.db"/>
<property name="url" value="jdbc:sqlite:data"/>
<property name="driver" value="org.sqlite.JDBC"/>
<property name="userid" value="root"/>
<property name="password" value="root"/>
<target name="echo">
@tbvinh
tbvinh / get the source code php.txt
Last active September 23, 2022 10:13
Revert the PHP code of "pH-7/Obfuscator-Class"
#Edit the obfuscate file:
1. Find the line: "$___();$__________($______($__($_))); $________=$____();"
2. Delete all to end of file
3. Add some lines to see the original source code:
--------------------------------------
$source = base64_decode(gzuncompress(base64_decode($_)));
$idx = strpos($source, "eval(\$___)");
$orgSource = substr($source, $idx + 24);
echo "<br/>ORIGIN SOURCE<br/><pre> $orgSource </pre> <br/>";
---------------------------------------