CEO of Seworks. I’ve been involved with cybersecurity area for the past 22 years. I also founded Wowhacker collective, a non-profit research group. I’m a five-time consecutive finalist at DEFCON for the last five years. this is my personal blog.
Don't wanna be here? Send us removal request.
Text
memo, Json
bittrex
$json_a=json_decode($string,true);
$currentbit= $json_a['result'][250]['Last']; // <---- $final = number_format((float)$currentbit, 2, '.','') * $currency1;
0 notes
Text
Unable to open terminal in OSX
dyld: Library not loaded: /usr/local/opt/readline/lib/libreadline.6.dylib Referenced from: /usr/local/bin/bash Reason: image not found [Process completed]
I tried backup the 7.0.xx directory to 7.0.xx_backup, and then copy 6.3.8 directory to 7.0 and 7.0.xx
Try this, will solve it.
1) New command -> /bin/bash
2)
silverdelui-Air:~ silverdel$ cd /usr/local/Cellar/readline
silverdelui-Air:readline silverdel$ ls -al
total 0
drwxr-xr-x 4 silverdel admin 136 Sep 4 08:08 .
drwxr-xr-x 22 silverdel admin 748 Sep 4 08:19 ..
drwxr-xr-x 11 silverdel admin 374 Sep 27 2014 6.3.8
drwxr-xr-x 12 silverdel admin 408 Sep 4 08:08 7.0.3_1
3)
silverdelui-Air:readline silverdel$ mv 7.0.3_1/ 7.0_old
silverdelui-Air:readline silverdel$ cp -R 6.3.8/ 7.0
silverdelui-Air:readline silverdel$ cp -R 6.3.8/ 7.0.3_1
Definitely, solved!
0 notes
Text
Nest Thermostat 3rd Gen,and just 2 line W and R wired.
If you have old gas boiler, you will be confuse. because almost all of wire diagram is 3 or 4 lines. so I bought a nest thermostat, and I have an old boiler system since 1940. so I tried wiring to my nest and gas boiler. it was 2 wire only system. W and R. I confused it diagram, but It was connected. great working now. you can connecting to old gas boiler. just 2 wired is ok.
some thermostats are using AA or AAA battery powered. I thought power problem, where is my power line from nest? but It is ok. your nest will power on. just 2 wire! you don’t need pro installer. you can do!
0 notes
Text
Airfare Codes Airline Class of Service Codes
A - First Class Discounted
B - Economy/Coach – Usually an upgradable fare to Business
C - Business Class
D - Business Class Discounted
E - Shuttle Service (no reservation allowed) or Economy/Coach Discounted
F - First Class
G - Conditional Reservation
H - Economy/Coach Discounted – Usually an upgradable fare to Business
J - Business Class Premium
K - Economy/Coach Discounted
L - Economy/Coach Discounted
M - Economy/Coach Discounted – Usually an upgradable fare to Business
N - Economy/Coach Discounted
P - First Class Premium
Q - Economy/Coach Discounted
R - First Class Suite or Supersonic (discontinued)
S - Economy/Coach
T - Economy/Coach Discounted
U - Shuttle Service (no reservation needed/seat guaranteed)
V - Economy/Coach Discounted
W - Economy/Coach Premium
X - Economy/Coach Discounted
Y - Economy/Coach
Z - Business Class Discounted
0 notes
Text
How to change the Mysql Timezone. (ex, Ubuntu)
If you want KST (Korea Time)
1) $ mysql_tzinfo_to_sql /usr/share/zoneinfo/Asia/Seoul KST > /root/mysql_time_zone_seoul.sql
2) Import sql data.
mysql -u root -p mysql < /root/mysql_time_zone_seoul.sql
check your changed timezone.
mysql> show variables;
then,
mysql> select now();
+---------------------+
| now() |
+---------------------+
| 2014-10-14 14:04:58 |
+---------------------+
1 row in set (0.00 sec)
mysql> exit
Done!
0 notes
Text
Term Setting
Very easy to set Korean term.
vi /etc/sysconfig/i18n
LANG="ko_KR.UTF-8" SUPPORTED="ko_KR.UTF-8:ko_KR:ko:en_US.UTF-8:en_US:en" SYSFONT="latarcyrheb-sun16" SYSFONTACM="8859-15"
vi /etc/bashrc
export LANG="ko_KR.UTF-8" export LC_ALL="ko_KR.UTF-8"
vi /etc/vimrc
if v:lang =~ "utf8$" || v:lang =~ "UTF-8$" set fileencodings=utf-8,euc-kr endif
0 notes
Text
BMW F10 5-Series problem where the sunroof will not auto open/close
F10 5 Series Sunroof Automatic open/Close problem Solution) Sunroof Reset 1. engine is on. 2. Push in the sunroof Tilt button and hold it in for 15 secs (the sunroof will slide open and slide closed.) -> sunroof reset complete 4. auto open and close. -> Test!!! Tested on BMW 520D (F10) :)
0 notes
Text
W219 Air Suspention (automatic shock)
W219Arnott Air Suspention (Automatic Shock) * Front Right : $458.85 -> in korea dealership :$1,500 Over :( * Front Left : $458.85 * Rear Kit(Pair) : $715.75 Compressor : $315.68 -> in korea dealership : $780 over :( https://www.arnottindustries.com/part_MERCEDES-BENZ_yid18_pid129.html
0 notes
Text
CentOS on Windows Azure Django Install
1. Distribute_setup.py Download and install
wget http://python-distribute.org/distribute_setup.py
python distribute_setup.py
2. pip install..
easy_install pip
3. Django install.
pip install django
End.
Powered by SEWORKS
0 notes
Text
How to Reset the Mysql Root Password
[root@CTF-box Linux_Memory_Tools-0.2]# mysqld_safe --skip-grant &
[1] 27204
[root@CTF-box Linux_Memory_Tools-0.2]# 130615 09:43:55 mysqld_safe Logging to '/var/log/mysqld.log'.
130615 09:43:55 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
[root@CTF-box Linux_Memory_Tools-0.2]# mysql -u root mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.1.67 Source distribution
Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> update user set password=password('your new password') where user='root';
Query OK, 3 rows affected (0.00 sec)
Rows matched: 3 Changed: 3 Warnings: 0
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql> quit
Bye
[root@CTF-box Linux_Memory_Tools-0.2]# /etc/init.d/mysqld start
Starting mysqld: [ OK ]
[root@CTF-box Linux_Memory_Tools-0.2]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.1.67 Source distribution
Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> \q
Bye
[root@CTF-box Linux_Memory_Tools-0.2]#
Powered by SEWORKS
0 notes
Text
DEFCON 21 CTF PreQuals START
GOGOGO! DEFCON !!
LAS VEGAS!!
Team WOWHACKER-B10S (http://www.wowhacker.org)
Powered by SEWORKS (http://www.seworks.co.kr)
0 notes
Text
Azure OpenLogic Centos 6.3 gcc install
Azure OpenLogic Centos 6.3 gcc install
* gcc, g++ install
1. yum –disableexcludes=main install kernel-headers-2.6.32-279.14.1.el6.openlogic.x86_64
disableexcludes =
yum.conf [main] defined by means of the installation is excluded sikindaneun stop.
2. yum install gcc
3. yum install gcc-c++
If you see this error :
Error: Package: glibc-headers-2.12-1.80.el6_3.7.x86_64 (updates)
Requires: kernel-headers
Error: Package: glibc-headers-2.12-1.80.el6_3.7.x86_64 (updates)
Requires: kernel-headers >= 2.2.1
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
Make this.- > yum --disableexcludes=main install kernel-headers-2.6.32-279.14.1.el6.openlogic.x86_64
Powered by SEWORKS
0 notes
Video
youtube
Ken Block in Seoul !!
Please to Watch HD Video!
#kenblock#ken block#drift#ken block drift#monster ken block#korea drift#ken block korea#seoul drift#ken block seoul
6 notes
·
View notes
Video
youtube
Please to watch HD Video!
Korea Drift Battle!!
2 notes
·
View notes
Text
Ken Block in Seoul
Please to watch HD Video!
Seoul, South-korea
Enjoy HD!
1 note
·
View note
Text
Facebook Home for Android (Leaked)
Facebook Home for Android (aka. Facebook phone)
it's the version that was leaked. You can download the full version soon.
Please use the application preview!
* I recommend that you remove any existing version of the app, and then install it !!
1. [Facebook Home Launcher]
https://www.dropbox.com/s/4zacq10vghe2uqa/com.facebook.home.apk
2. [Facebook App]
https://www.dropbox.com/s/q5mra1eugb126cz/com.facebook.katana.apk
3. [Facebook Messenger]
https://www.dropbox.com/s/tf47of1lrdp2seg/com.facebook.orca.apk
Full Version, please check the following link!
http://www.facebook.com/home
0 notes