Jump to content

0phoi5

Dedicated Members
  • Posts

    702
  • Joined

  • Last visited

  • Days Won

    20

Everything posted by 0phoi5

  1. Closest I can think of game-wise is DEFCON. But that's probably still too close to a game for what it sounds like you require. *Edit* I think you can set a game up where all players are the computer, and see how that goes. https://en.wikipedia.org/wiki/DEFCON_(video_game)
  2. Thanks for those laughs Sun Tzu said that offense is the best defence. Not so for the average PC user. A strong defence is the best defence.i.e.; make those passwords decent!
  3. Sh*t, I use nano I can use vi, but it's so slow to use. Sometimes you just want to amend a file quickly
  4. Thanks all :) I get what happened now. Quite ironic that the stringified $group variable began with an @ symbol !
  5. No luck, as above. Must be something to do with the way it's parsing Get-ADuser? (rather than setting the variables without Get-ADuser) I assume I'm doing something wrong here: $y = Get-ADuser JOEBLOGGS -property MemberOf | % {$_.MemberOf | Get-ADGroup | select Name | sort name}
  6. $y = Get-ADuser JOEBLOGGS -property MemberOf | % {$_.MemberOf | Get-ADGroup | select Name | sort name} foreach ($group in $y) { if ("$group" -match "^@") { echo "yep $group" } else { echo "Nope $group" } } yep @{Name=@Testone} yep @{Name=@Testtwo} yep @{Name=Testthree} yep @{Name=Testfour}
  7. Not sure what you mean, sorry. $Group is a variable already recognised by PowerShell - The line 'foreach($Group in $CurrentGroups)' works fine.
  8. Not always. We don't understand why Quantum Mechanics works, but we're making Quantum Computers anyway. I agree that it's important to find out why something works, yes, but not the most important thing. Sometimes deadlines and requirements come first, stuff like that comes after. No ideal, agreed, but that's life.
  9. 0phoi5

    Old Online Game

    It used to be called Zelda Online when it was first created, but the creator had to change it after getting sued.
  10. 0phoi5

    Old Online Game

    I used to play it back in 2000 UserID wormboy2k. Unholy Nation is a good server. I wouldn't recommend trying to exploit the game in any way. That's illegal and morally wrong. Unless you have permissions from the creators and in writing.
  11. http://www.greenbot.com/article/2457986/how-to-enable-developer-options-on-your-android-phone-or-tablet.html http://www.pcworld.com/article/184656/android_keyboard_shortcuts.html Use these 2 links to create a script.
  12. Open Command Prompt (Start Menu > type 'cmd' > Press enter) Type "assoc .bin= " (without the quotation marks, note the space after the equals sign) This will un(assoc)iate the .bin files from being opened with any program. You can then associate it with whatever you would like.
  13. See this. I also had the same issues in the past. You will probably have to install CRDA and Wireless-RegDB to get it to work.
  14. Thanks. Still no luck This still returns all as a positive match ('Yep'), when the last 2 should return negative. Weird!
  15. Hi guys, I have the following PowerShell script, which finds the list of groups a user is a member of, formats them to name only, and then is supposed to list yes or no to which groups begin with the '@' symbol; $CurrentGroups = Get-ADuser JOEBLOGGS -property MemberOf | % {$_.MemberOf | Get-ADGroup | select Name | sort name} foreach($Group in $CurrentGroups) { if("$Group" -match "`@") { echo Yep $Group } else { echo Nope $Group }} User JOEBLOGGS is a member of; @Testone @Testtwo Testthree Testfour On running this script, I would expect the output to be; Yep @Testone Yep @Testtwo Nope Testthree Nope Testfour However, it instead states 'Yep' to all of them, not just the groups beginning with an '@' symbol. I have tried -like, -match, -contains as well as "\@", "@*" and "@". None work correctly. If I run -match "@Test", this works fine, but not all of the groups in our AD that begin with an @ symbol follow with the same digits, so I need this to work with just searching for all groups that begin with an @ symbol. Thank you.
  16. Unfortunately I've not had any luck yet. As it stands, it's been quick and easy for me to simply create a script to stop hostapd, swap the /etc/network/interfaces and /etc/init.d/hostapd files out for the originals, and then reboot. This then boots the Pi with IP 192.168.1.60 instead of 192.168.1.11 (as per the hostapd settings), which then allows me to use apt-get successfully. I then just reverse the above and bring hostapd back up. Takes a couple of minutes once a week, so probably not going to bother investigating this further! I'll let you know if I come across a fix.
  17. aircrack-ng's airodump-ng can do all of those things, apart from pinpointing the location of someone. To write the data to an Excel readable CSV file, simply use the --write argument. Location pinpointing can be achieved with multiple APs (mathematically at least 3), each checking the signal strength for a Station MAC and extrapolating this to pinpoint it's location, with a degree of inaccuracy. A custom script would probably be required for this.
  18. I agree, but I feel the point here would be to ask the user at the end of doing all other file transfers, rather than part way through. So, in moving 1000 files from one location to another, where file number 200 has a duplicate in the destination; instead of transferring 199 files and then stopping, transfer 999 files and then ask the question. Would be so much better. Linux apt-get upgrade does this as well. Why install half of all upgrade components and then ask a question (such as do you want the cron service to restart?). Why not complete all actions that are possible, and then ask the questions at the end? I would find this a blessing, as I can think of at least 24+ hours wasted where I thought a process would be complete by the morning, only to find it had completed 2% and then asked a question and stopped.
  19. I feel this way about many, many installs, updates and file transfers; Ask me questions at the end, not part-way through, when I've gone to bed or left the PC on for the day, only to find the process I was trying to complete stalled after 5 minutes to ask a stupid question.
  20. Thank you. I am currently starting from scratch to be on the safe-side, duplicating the hostapd config files before amending them (which I should have done the first time). As it's a home server/access point, it's not a major issue if I have to temporarily take the RPi access point down to run apt-get update/upgrade once a week, I may end up just doing this. I will let you know if I have any luck.
  21. Thanks. I installed 3 days ago, did apt-get update and apt-get dist-upgrade successfully around 2 days ago, before I followed the instructions here to create the bridge, after which apt-get fails. Looks to be the same; DISTRIB_ID=Kali DISTRIB_RELEASE=kali-rolling DISTRIB_CODENAME=kali-rolling DISTRIB_DESCRIPTION="Kali GNU/Linux Rolling" PRETTY_NAME="Kali GNU/Linux Rolling" NAME="Kali GNU/Linux" ID=kali VERSION="2016.2" VERSION_ID="2016.2" ID_LIKE=debian ANSI_COLOR="1;31" HOME_URL="http://www.kali.org/" SUPPORT_URL="http://forums.kali.org/" BUG_REPORT_URL="http://bugs.kali.org/"
  22. Sources.list was; deb http://http.kali.org/kali kali-rolling main non-free contrib deb-src http://http.kali.org/kali kali-rolling main non-free contrib I have amended to; deb http://http.kali.org/kali kali-rolling main contrib non-free # For source package access, uncomment the following line # deb-src http://http.kali.org/kali kali-rolling main contrib non-free apt-get update then states; root@RPi:~# apt-get update Ign:1 http://http.kali.org/kali kali-rolling InRelease Err:2 http://http.kali.org/kali kali-rolling Release Unable to connect to http.kali.org:http: Reading package lists... Done E: The repository 'http://http.kali.org/kali kali-rolling Release' does no longer have a Release file. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details.
  23. Linux RPi 4.1.19-v7 #1 SMP Tue Mar 15 15:10:00 CDT 2016 armv7l GNU/Linux I will try amending my sources.list now.
×
×
  • Create New...