Communities

Total Articles 180
No.
Subject
Author
180 Recommended settings for Wi-Fi routers and access points
[Level:16]gilgil
374164   Jan 20, 2019
https://support.appl-e.com/bg-bg/HT202068 2.4GHz channel width Channel width controls how large of a "pipe" 'is available to transfer data. However, larger channels are more subject to interference and more ...  
179 [network] how to save a new file when tcpdump file size reaches 10Mb
[Level:16]gilgil
89988   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...  
178 [network] how to capture 802.11 frame with ethernet compatible wireless adapter imagefile
[Level:16]gilgil
86070   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...  
177 [qt] QTimer example file
[Level:16]gilgil
112799   Mar 19, 2017
[Code] #include <QCoreApplication> #include <QDebug> #include <QTimer> struct Obj : QObject { Q_OBJECT public slots: void processTimeout() { qDebug() << "processTimeout"; } }; int main(int argc, char *ar...  
176 [network] how to change ip for web proxy
[Level:16]gilgil
78136   Dec 02, 2016
sudo iptables -t nat -A OUTPUT -p tcp --dport 80 -j DNAT --to-destination 10.1.1.2:8080 sudo iptables -t nat -A OUTPUT -p tcp --dport 443 -j DNAT --to-destination 10.1.1.2:4433  
175 [linux] network configuration(change device name)
[Level:16]gilgil
79505   Dec 01, 2016
You can change the device name by defining the name manually with an udev-rule. For example: /etc/udev/rules.d/10--network.rulesSUBSYST-EM=="net", ACTION=="add", ATTR{address}=="aa:bb:cc:dd:ee:ff&qu-ot;, NAME="net1"...  
174 Wireshark 802.11 Display Filter Field Reference file
[Level:16]gilgil
78742   Nov 22, 2016
http://www.willhackf-orsushi.com/papers/8-0211_Pocket_Referenc-e_Guide.pdf 80211_Pocket_Referen-ce_Guide.pdf  
173 [network] snort and suricata file
[Level:16]gilgil
102501   Aug 27, 2016
snort_and_suricata(2-016.08.27).odp snort_and_suricata(2-016.08.27).ppt  
172 [linux] remote packet capture
[Level:16]gilgil
82574   Aug 15, 2016
sshpass -p toor ssh -l root 10.1.1.12 tcpdump -nn -U -s0 -w - -i tap0 'not port 22' | wireshark -k -i - http://stackoverflow-.com/questions/19597-903/how-to-capture-remote-system-network-traffic  
171 [linux] auto ssh connection without password
[Level:16]gilgil
124872   Aug 15, 2016
apt-get install sshpass sshpass -p your_password ssh user@hostname  
170 [qt] How to add debug info in a project.
[Level:16]gilgil
75845   Aug 03, 2016
It add "-g" option in compiling a project. CONFIG += force_debug_info  
169 [qt] .gitignore file for Qt file
[Level:16]gilgil
78912   Feb 22, 2016
[How to create .ignore file for qt] Qt Creator - File - New - Non Qt Project - Plain C++ Application - Add to version control(Git) # This file is used to ignore files which are generated...  
168 [cmake] How to change install prefix
[Level:16]gilgil
69511   Mar 31, 2015
cmake -DCMAKE_INSTALL_PREFI-X:PATH=/home/gilgil . && make all install cmake -DCMAKE_INSTALL_PREFI-X:PATH=$PWD/usr/local . && make all install  
167 [regex] Of running multiple regexp at once
[Level:16]gilgil
69637   May 06, 2015
http://fulmicoton.co-m/posts/multiregexp/-  
166 [ssl] How to install root certificate
[Level:16]gilgil
83370   Aug 05, 2015
sudo mkdir /usr/share/ca-certificates/extra sudo cp root.crt /usr/share/ca-certificates/extra sudo dpkg-reconfigure ca-certificates  
165 [c++] cpp_virtual_function_and_assembly file
[Level:16]gilgil
77922   Jan 19, 2016
[2016.01.19] cpp_virtual_function-_and_assembly_201601-19.tar.gz  
164 [c++] Definitions of destructor
[Level:16]gilgil
77689   Jan 16, 2016
from : http://mentorembedde-d.github.io/cxx-abi/abi.html base object destructor of a class T A function that runs the destructors for non-static data members of T and non-virtual direct base classes of T. c...  
163 [qt] How to run qmake in command line
[Level:16]gilgil
79073   Sep 16, 2015
cd /usr/lib/x86_64-linux-gnu/qtchooser sudo touch default.conf sudo gedit default.conf /opt/Qt/5.7/gcc_64/b-in /opt/Qt/5.7/gcc_64/l-ib  
162 [ubuntu] How to launch application as root from Unity Launcher
[Level:16]gilgil
171848   Oct 21, 2015
http://askubuntu.com-/questions/118822/ho-w-to-launch-application-as-root-from-unity-launcher cd ~/.local/share/appli-cations gedit APP_NAME.desktop Change from Exec= <APP_NAME> to Exec=gksudo -k -u root <APP_NAME> You ...  
161 [ubuntu] How to disable checksum offload
[Level:16]gilgil
80873   Oct 21, 2015
http://ubuntuforums.-org/showthread.php?t=2028534 sudo ethtool -K eth0 tx off rx off  


XE Login