search for: erikmccaskey64

Displaying 9 results from an estimated 9 matches for "erikmccaskey64".

2011 Feb 28
5
Sorting by date
Original: Jan 23 2011 10:42 SOMETHING 2007.12.20.avi Jun 26 2009 SOMETHING 2009.06.25.avi Feb 12 2010 SOMETHING 2010.02.11.avi Jan 29 2011 09:17 SOMETHING 2011.01.27.avi Feb 11 2011 20:06 SOMETHING 2011.02.10.avi Feb 27 2011 23:05 SOMETHING 2011.02.24.avi Output: Feb 27 2011 23:05 SOMETHING 2011.02.24.avi Feb 11 2011 20:06 SOMETHING 2011.02.10.avi Jan 29 2011 09:17 SOMETHING 2011.01.27.avi Jan
2011 Mar 03
5
HOW to REDIRECT to HTTPS?
I'm searching for a method [on client side] to redirect to HTTPS in a few given domains. e.g.: http://www.facebook.com/ to https://www.facebook.com/ Ok. I use several webbrowsers, and not all of them has "add-ons" to redirect these pages to https. My purpose is this: when i go to "http://www.facebook.com" i don't want to see any http traffic with wireshark
2011 Feb 25
2
How can I disable Internet access for programs running in Wine?
I just can find any solution... Please help! thanks.. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20110225/5a94de60/attachment.html>
2011 Feb 13
1
Security: gnome-screensaver VS. switch user
People "usually" suspend their laptop, so that they can continue their work when they open the laptop. OK! Two choices [GNOME]: 1 - Menu -&gt; Shut Down -&gt; Suspend in this case, the gnome-screensaver locks the PC. but the gnome-screensaver is just a "normal process", and it could be killed e.g.:
2011 Feb 14
2
sandboxie like application for CentOS?
http://www.filehippo.com/download_sandboxie/ It's a great application [ for windows... :\ ] Are there any programs under CentOS, that has the ~same features? To be specific: The user could launch a program [e.g.: Google Chrome] inside this sandbox, and when he/she exits Google Chrome, all the changes that Google Chrome did is "undoed". + Google Chrome is in a sandbox, so it
2011 Feb 27
2
opened OpenSSL port
Main question: is it safe, to open a port for an openssl server? e.g.: server side - generate a self-signed cert. time openssl req -x509 -nodes -days 365 -newkey rsa:8192 -keyout mycert.pem -out mycert.pem openssl s_server -accept 52310 -cert mycert.pem Is it secure? - it could be DOSed' [DenialofService] or could it be attacked in any way? Are there any iptables rule for restricting
2011 Mar 05
1
IPTABLES rule for separating users
I have an OpenWrt 10.03 router [ IP: 192.168.1.1 ], and it has a DHCP server pool: 192.168.1.0/24 - clients are using it through wireless/wired connection. Ok! Here's the catch: I need to separate the users from each other. How i need to do it: by IPTABLES rule [ /etc/firewall.user ]. Ok! "Loud thinking": So i need a rule something like this [on the OpenWrt router]: - DROP
2011 Mar 09
1
what is the “Online Certificate Status Protocol”
I use privoxy. In the user.action file i have a redirect rule and a few websites: { +redirect{s at http://@https://@} } .twitter.com .facebook.com Ok! it's working great, e.g.: if i visit any "*twitter.com" URL it gets redirected to HTTPS! But: with wireshark i can see some "OCSP" packets [ http://en.wikipedia.org/wiki/Online_Certificate_Status_Protocol ] Question:
2011 Mar 09
0
how to only allow tcp on dport 443 on the OUTPUT chain?
it's a normal desktop machines iptables firewall: If i want to block udp on dport 80 on the output chain, then is this enough? i want to only allow tcp on it! iptables -P OUTPUT DROP iptables -A OUTPUT -o $PUBIF --dport 80 -j ACCEPT or i need this rule? iptables -P OUTPUT DROP iptables -A OUTPUT -o $PUBIF -p tcp --dport 80 -j ACCEPT the second one is the good one? -------------- next