Communities

Total Articles 180
No.
Subject
Author
120 [qt] The Property Browser Framework
[Level:16]gilgil
90600   Jan 30, 2015
qt-solutions https://qt.gitorious-.org/qt-solutions/qt-solutions The Property Browser Framework http://doc.qt.digia.-com/qq/qq18-propertybrowser.html-  
119 [network] how to save a new file when tcpdump file size reaches 10Mb
[Level:16]gilgil
90310   Jul 02, 2017
https://stackoverflo-w.com/questions/2156-7963/how-to-save-a-new-file-when-tcpdum-file-size-reaches-10mb tcpdump -W 5 -C 10 -w capfile What the above command does is create a rotating buffer of 5 files (-W 5) and tcpdump...  
118 How to debug VCL core module in Delphi 1 moviefile
[Level:16]gilgil
89370   Apr 03, 2010
One of the Delphi programming strength is that VCL source code is opened compared with other compiler. Somtimes, I need to debug VCL core module such as Classes.pas or Forms.pas. Let me introduce simpl...  
117 The difference between global object and static object. 4 file
[Level:16]gilgil
89290   Sep 11, 2011
[StaticObject] [StaticObject.h] class StaticObject { public: static StaticObject& instance(); }; [StaticObject.cpp] StaticObject& StaticObject::instan-ce() { static StaticObject staticObject; // --- (1) --- return s...  
116 [linux] sock structure
[Level:16]gilgil
89207   Dec 12, 2014
#define AF_INET PF_INET#define AF_INET6 PF_INET6#define PF_INET 2 /* IP protocol family. */#define PF_INET6 10 /* IP version 6. */ /* Internet address. */typedef uint32_t in_addr_t;struct in_addr { in_addr_t...  
115 ASCII printable characters
[Level:16]gilgil
88388   Dec 22, 2009
http://en.wikipedia.-org/wiki/ASCII#ASCII-_printable_character-s Code 0x20, the "space" character, denotes the space between words, as produced by the space-bar of a keyboard. The "space" character is considere...  
114 [linux] shell_test file
[Level:16]gilgil
88292   Nov 20, 2014
[a.sh] A="this is a" export EA="this is ea" echo "[a.sh] A =" $A echo "[a.sh] EA=" $EA echo b.sh [b.sh] B="this is b" export EB="this is eb" echo "[b.sh] A =" $A echo "[b.sh] EA=" $EA echo...  
113 Command line compiler (Microsoft Visual Studio & CodeGear C++ Builder)
[Level:16]gilgil
87467   Mar 10, 2010
[Microsoft Visual Studio]1. Execute Visual Studio 2005 Command Prompt. Start > Program > Microsoft Visual Studio 2005 > Visual Studio Tools > Visual Studio 2005 Command Prompt This file contains the fol...  
112 Guess the result of the following code. 1 file
[Level:16]gilgil
87267   Sep 23, 2011
[Source code] #include <iostream> #include <string> using namespace std; string foo1() { string s = "hello"; return s; } string foo2() { string s = " world"; return s; } int main() { const char* p1 = foo1().c_str(); const...  
111 SSL Attack Summary 2
[Level:16]gilgil
87187   Apr 05, 2010
[SSL attack pseudo code] void surf(string url) { TCPClient tcpClient = new TCPClient; if (!tcpClient.connect(-url.hostname, url.port)) return; HTTPClient httpClient = tcpClient; if (url.scheme == "ht...  
110 [android] How to build libpcap and tcpdump for android
[Level:16]gilgil
87060   Oct 27, 2015
http://www.androidtc-pdump.com/android-tcpdump/compile [dependency] sudo apt-get install flex bison apt-get install gcc-arm-linux-gnueabi [download and extract] wget http://www.tcpdump.o-rg/release/tcpdump-4.7.4.tar.gz wget...  
109 How to synchronize user defined thread with Qt GUI module. file
[Level:16]gilgil
86892   Oct 21, 2011
[MyThread.h] #include <QObject> #include <boost/thread.hpp> class MyThread : public QObject { Q_OBJECT public: MyThread(); virtual ~MyThread(); public: boost::uint32_t interval; bool active; public: bool open(); bool ...  
108 When ARP spoofing is active, sniffer can not sniff ARP packets well. moviefile
[Level:16]gilgil
86850   Mar 24, 2010
When I make ARP spoofing(ARP poisonig) application, I met some trouble. Normal sniffer(such as wireshark) can not sniff ARP infection packets those Cain sends periodically to the victim host. First ...  
107 [android] Monitoring Android Network Traffic Part II: Cross Compiling TCPDUMP
[Level:16]gilgil
86438   Nov 03, 2014
You must install "arm-linux-gnueabi-gcc". export CC=arm-linux-gnueabi-gcc ./configure --host=arm-linux --with-pcap=linux --prefix=/... http://www.symantec.-com/connect/blogs/mo-nitoring-android-network-traffic-part-ii-cross-compilin...  
106 [network] how to capture 802.11 frame with ethernet compatible wireless adapter imagefile
[Level:16]gilgil
86385   May 26, 2017
In general, USB wireless adapter is ethernet compatible. In managed mode, you can only capture ethernet frames(not 802.11 frames). If you would like to see 802.11 frames generated by the ethernet wire...  
105 Global static object dependencies problem. 2 file
[Level:16]gilgil
86233   Oct 09, 2011
[Suppose that] "Log" class is declared and used as Singleton pattern, so is "App" class. Both classes have a "instance()" method that returns their object reference. App class uses Log method(write). We ca...  
104 How to fix stdio buffering
[Level:16]gilgil
85926   Oct 20, 2014
http://www.perkin.or-g.uk/posts/how-to-fix-stdio-buffering.html  
103 Git Data Transport Commands imagefile
[Level:16]gilgil
85868   Jan 28, 2014
from : http://blog.osteele.-com/posts/2008/05/my--git-workflow  
102 [android] rooting samsung galaxy s3 for knox
[Level:16]gilgil
85712   Nov 02, 2014
http://www.kingoapp.-com/android-root.htm  
101 SSL Strip Video Demo movie
[Level:16]gilgil
85203   Feb 16, 2010
http://www.youtube.c-om/watch?v=xWBeQ0cR0WY It is a little inconvenient for me to use a console based (line command) application. What if I make it for myself in GUI based one?  


XE Login