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
침투하라.. | |
오늘이 마지막인 것처럼 | |
전적으로 믿고 | |
해커를 드리셔야합니다 | |
블랙팔콘은 | |
결제 서비스 검증 , | |
개인정보 유출 검증등 해킹 가능성을 | |
다각적으로 검토해 컨설팅 해드립니다.. |
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
자기 멋대로 사는 것이지 | |
정답은 없다 | |
사람마다 상황이 다 다르고 | |
그 속에서 최선의 결과가 도출 되도록 | |
노력하는 것일 뿐이다.. | |
거기에 성공했던 경험을 추려서 | |
성공 가능성의 법칙을 만들고 | |
다듬는 과정일 뿐이다.. |
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
블랙팔콘시큐리티에서의 | |
개발자 뽑는 기준 | |
1. 코딩은 타인이 보기에 가독성 있게 정리 할 수 있어야 함 | |
2. 자신의 생각을 글로 논리적으로 표현 할 수 있어야 함 | |
3. 의사소통 시 고객에게는 문서(ppt,word)로 소통 | |
설계자와는 uml로 소통 , 개발자간 코딩으로 | |
소통 가능해야 함 |
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
신행은행직원과 같이 일할 기회가 있었는데 | |
회사에 맞춰 보수적인 논리와 | |
해커가 말하는 조언을 귀담아서 | |
더 튼튼한 업무논리를 만드는 과정을 지켜 보았는데 | |
보수적이 곳에서 창의적인 논리를 어떻게 | |
녹여 내는 가에 대한 가장 베스트한 자세 였다.. | |
의외로 회사 간판만 믿고 |
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
아파치 Libcloud | |
Libcloud의 기능 : 하나의 일관된 통합 API를 통해 여러 클라우드 서비스 업체에 액세스한다. | |
Libcloud를 사용하는 이유: 아파치 Libcloud에 대한 위의 설명을 보고 환호하지 않는다면, | |
아마 여러 클라우드로 작업한 적이 없는 사람일 것이다. 클라우드 서비스 업체는 모두 각자의 방법을 선호한다. | |
따라서 10여 개의 업체를 아우르는 통합 메커니즘이 있다면, 많은 시간을 절약하고 골치아픈 문제를 피할 수 있다. | |
컴퓨팅, 스토리지, 로드밸런싱, DNS를 위한 API가 있으며 파이썬 2.x와 파이썬 3.x, | |
그리고 파이썬을 위한 고성능 JIT 컴파일러인 파이파이(PyPy)를 지원한다. |
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
pip install apache-libcloud |
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
from libcloud.compute.types import Provider | |
from libcloud.compute.providers import get_driver | |
amazon = get_driver(Provider.EC2) | |
accesskey = "aws iam에서 생성한 access key 입력" | |
secretkey = "aws iam에서 생성한 secret key 입력" | |
driver = amazon(accesskey, secretkey, region='us-east-1') | |
print( "driver = %s " % driver.website ) |
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
hacker@ubuntu:~$ | |
hacker@ubuntu:~$wget http://pocoproject.org/releases/poco-1.7.4/poco-1.7.4.tar.gz | |
hacker@ubuntu:~$ | |
hacker@ubuntu:~$ tar xvf poco-1.7.4.tar.gz | |
hacker@ubuntu:~$ | |
hacker@ubuntu:~$ cd poco-1.7.4/ | |
hacker@ubuntu:~/poco-1.7.4$ ./configure |
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
sudo apt-get install openssl libssl-dev | |
sudo apt-get install libiodbc2 libiodbc2-dev | |
./configure --omit=Data/ODBC,Data/MySQL | |
make | |
sudo make install |
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> | |
#include <Poco/Util/Application.h> | |
class HelloPocoApplication : public Poco::Util::Application | |
{ | |
protected: | |
virtual int main(const std::vector<std::string> &args) | |
{ | |
std::cout << "Hello, POCO C++ Libraries!" << std::endl; | |