2,201 reputation
422
bio website unix.stackexchange.com/users/…
location United States
age 23
visits member for 8 months
seen 12 hours ago
stats profile views 68

Network Security Engineer


May
9
comment How to generate 4 WEP keys with linux commands?
@MOHAMED Yes, I know. As I already stated, your question confused me.
May
9
comment How to generate 4 WEP keys with linux commands?
@MOHAMED Clearly there was a miscommunication then. Like I said your question is very unclear.
May
9
comment How to generate 4 WEP keys with linux commands?
@MOHAMED This answer is not wrong. That is how WEP works... Your question is very hard to follow as it is not very clear what you are looking for. A WEP key is nothing more than a hexadecimal string of variable length.
May
9
comment How to generate 4 WEP keys with linux commands?
the standard way is (IV + key) -> RC4 = WEP key
May
8
revised How to generate 4 WEP keys with linux commands?
added 4 characters in body
May
8
answered How to generate 4 WEP keys with linux commands?
May
8
comment How to generate 4 WEP keys with linux commands?
also this is a dupe (stackoverflow.com/questions/16446910/…)
May
8
comment How to generate 4 WEP keys with linux commands?
First, a WEP key isn't generated using MD5 hashing, it uses RC4. Second, the reason you can generate multiple is because a WEP key is usually an IV (initialization vector (usually the current time or a random number) and your key: (IV + Key) -> RC4 = WEP key
Apr
26
comment Expansion with numbers in human readable format
@Sardathrion there is but it wont do interpretive sort like sort -n... with zsh you could use parameter expansion to sort but it will not interpret 2 as being greater than 10 (ls *(n))
Apr
26
comment Expansion with numbers in human readable format
@Sardathrion why don't you want to use pipes? this is what they are for.....
Apr
26
answered Expansion with numbers in human readable format
Apr
12
awarded  Custodian
Apr
12
reviewed Looks Good Syntax of DISPLAY=:0 unity --replace or DISPLAY=:0 compiz --replace
Apr
11
comment Ctrl-s hang terminal emulator?
I'm pretty sure that's when Hardware Flow Control was introduced, not Software Flow Control. I could be wrong. I've only found a few documents that talk about their conception/implementation.
Apr
11
revised Ctrl-s hang terminal emulator?
added 248 characters in body
Apr
11
revised Ctrl-s hang terminal emulator?
deleted 233 characters in body
Apr
11
answered Ctrl-s hang terminal emulator?
Apr
11
comment Ctrl-s hang terminal emulator?
@IngoKarkat I wouldn't say it's stupid... I still use it from time to time
Apr
11
comment Ctrl-s hang terminal emulator?
before there were keyboards with the scroll lock key C-s and C-q were the old days "scroll lock toggle". you can disable this functionality by adding stty ixany and stty ixoff -ixon to your .bashrc
Apr
11
comment Ctrl-s hang terminal emulator?
This might be a stupid question but you didn't mention what you have tried in your question. You tried C-q to re-enable scrolling, right?