Start the FileZilla program if it isn’t already running.
Click Edit, Settings in the menu bar. The “FileZilla Options” window will appear.
Select Connections, then FTP on the left hand side.
Choose the Passive (recommended) option.
1
Jul
Start the FileZilla program if it isn’t already running.
Click Edit, Settings in the menu bar. The “FileZilla Options” window will appear.
Select Connections, then FTP on the left hand side.
Choose the Passive (recommended) option.
17
Feb
1. In Outlook, click Tools > Account Settings.
2. Select the email account you are using.
3. Click Change… on the bar above.
4. Click More Settings… on the bottom right.
5. Click the Advanced tab.
6. Under the Delivery section, check the box for Leave a copy of messages on the server.
7. Click OK > Next > Finish, and you’re done!
6
Nov
1. Click Start then select Control Panel.
2. Select Programs and Features.
3. Select Turn Windows features on or off.
4. Select the Telnet Client option.
5. Click OK.
6. A dialog box will appear to confirm installation. The telnet command should now be available.
4
Aug
Add these lines into .htaccess
RewriteEngine On
RewriteCond %{QUERY_STRING} ^.*(;|<|>|’|”|\)|%0A|%0D|%22|%27|%3C|%3E|%00).*(/\*|union|select|insert|cast|set|declare|drop|update|md5|benchmark).* [NC]
RewriteRule .* – [F]
4
Aug
Login to the Mysql prompt :
mysql > select * from table INTO OUTFILE ‘/tmp/test.txt’;
This command will create a test.txt file in /tmp directory.
4
Aug
To check avilable memory in Linux type free -m command. free displays the total amount of free and used physical and swap memory in the system, as well as the buffers used by the kernel.
free -m
free -b
free -k
1. The -b switch displays the amount of memory in bytes
2. The -k switch (set by default) displays it in kilobytes
3. The -m switch displays it in megabytes
4. The -g switch displays it in gigabytes.
vmstat
Output
procs ———–memory———- —swap– —–io—- -system– —-cpu—-
r b swpd free buff cache si so bi bo in cs us sy id wa
0 0 0 63316 176624 1062340 0 0 25 18 39 592 5 1 94 0
1. swpd: the amount of virtual memory used.
2. free: the amount of idle memory.
3. buff: the amount of memory used as buffers.
4. cache: the amount of memory used as cache.
4
Aug
To Check CPU Speed in Linux
less /proc/cpuinfo
egrep ‘GHz|MHz’ /proc/cpuinfo
4
Aug
After installing a new Linux system or after configuring a new network services/server, you may need to verify which ports are listing on systems network interface including binding.
Use any one of the following command to find this information:
Code:
lsof -i
nmap localhost
netstat -an
netstat -tulpn
nmap -sT -O localhost
If you find or see unwanted open port, it can be confirmation of an intrusion or cracker in your system.
For more advance usage or adventure with these commends read man pages of corresponding commands.
4
Aug
To start
/usr/local/cpanel/3rdparty/mailman/bin/mailmanctl start,
To stop
/usr/local/cpanel/3rdparty/mailman/bin/mailmanctl stop
4
Aug
To disable ping
echo 1 > /proc/sys/net/ipv4/icmp_echo_ignore_all
To enable ping
echo 0 > /proc/sys/net/ipv4/icmp_echo_ignore_all
| M | T | W | T | F | S | S |
|---|---|---|---|---|---|---|
| « Jul | ||||||
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 | |||
shiyas.com
