Changing Wifi Mac Address in Nox Emulator - android-emulator

I wanted to change Nox emulator mac address but it did not work at all
When I use their commands guidance and using the mac changer part to alter mac address, nothing happens, and when I check from device the mac address is the same as before, What is the problem and do you know any other solution to alter mac address only for emulator itself to be different than my main mac address?
Guidance: https://support.bignox.com/en/function/command
The command I used to alter the mac address:
NoxConsole.exe modify -name:NoxPlayer1 -mac:37:4a:40:27:e7:83

Related

iPhone 6s not connecting to mac osx Sierra on Vmware

I am trying to connect my iPhone 6s (10.3.2) to mac osx Sierra (10.13) running on Vmware.
I have changed the USB controller to USB 2.0 and have enabled all three options.
Vmware sees Apple iPhone in devices list, but without any success once I am pressing Connect (Disconnect from Host). Moreover, once I unplug my iPhone from USB cable, it restarts. This behavior happens each time I try to connect it to mac osx (on vmware).
Has anyone come across with this strange behavior, and if so, did you find any solution?
Thanks.
I cannot agree with the selected answer as using Windows 10, VMware 12.5.7 with High Sierra 10.3, iPhone 5s with iOS 11.0.3 and a generic cable it recognizes the device. See the images below.
However, it did not work with Ubuntu 16.04, VMware 12.1.1 (also 12.5), Sierra 10.12.6 (also High Sierra 10.13), and the same iPhone.
I am not sure if it is Ubuntu compatibility issue with VMware/MacOS/iOS. If someone knows, please let us know.
Tip for Windows 10:
1. Scroll to the right and type 'Power Options' in the search field and click on it.
2. Click 'Change plan setting' on your chosen plan.
3. Click 'Change advanced power setting' on your chosen plan.
4. Find 'USB settings' and open.
5. Find 'USB selective suspend setting' and change it to disabled.
In VMware:
- Change USB settigns from 3.0 to 2.0. Also select 'Show all devices'.
It works, however you need to edit your .vmx file. When connecting your iDevice to the host, write down it's vendor id and product id.
Then open your virtual machine's .vmx file, and add the following line:
usb.quirks.device0 = "0xvid:0xpid skip-reset, skip-refresh, skip-setconfig"
Replace vid and pid with the digits of the values of your device. Then reboot your VM, focus on the VM and connect your iDevice.
After long searching and googling for the solution, I came to conclusion that Sierra does not recognize Apple devices connected through USB to virtual machine.

Call web service running on Parallels from iPhone connected via USB

I can request a web service running on IIS Express/Parallels from Mac OS with...
http://windows:57239/api/hello
This works fine from the iPhone simulator, but not from an iPhone device connected via USB, when debugging in XCode.
Is it possible to make this work? I would like to debug my API with in-app purchases.
I switched my Parallels instance to Bridged networking mode and let the Wifi's DHCP assign an IP address to it. Then I used this IP address from the iPhone app.
Not entirely satisfying because the IP will vary, but its very cool having an iPhone trigger a break point in Visual Studio running on a virtual instance of Windows.

Is it possible to use NMAP to find OS using a MAC address

If I only have a device mac ID (sometimes it is not even connected to a WI-FI network), is it possible to use NMAP to find it's OS?
No. OS detection uses fingerprints based on TCP/IP.
Source

How do I use Xperia Ray through Eclipse for Android programming?

I downloaded the Suite for the phone, the Google USB drivers and the Phone's connection drivers. So far, the phone works perfectly with the PC but Eclipse still refuses to see the phone and Device Manager is convincing me that I have no hardware compatible with the Google USB drivers. Therefore the Google USB drivers are downloaded but not installed or assigned to any device. I followed every answer on stackoverflow that there is so far, but none have solved the problem.
First, set your device into USB / debug mode.
Second, after you connect your device to the USB make sure your drivers is installed properly.
And last verify that adb.exe can detect you device from cmd (if running in windows) ..(path to your SDK)\platform-tools\adb device
If last step fails, then re-install you device driver, it should be handled automatically by sony pc-companion for your xperia phone.
You also have to enable USB-Debugging in Settings->Developer Options on your phone.

Android Emulator - PC Serial Port

I need to prototype an Android application which communicates to external hardware using serial I/O. Can the emulator send and receive serial data over a PC's com port?
The Android emulator itself supports this feature, I see people use
"emulator -qemu -serial COM1" on Windows PC
or
"emulatro -qemu -serial /dev/ttyS0" on Linux PC
I have not tried it by myself yet, but that is the way in the big picture.
I came across this:
http://code.google.com/p/android-serialport-api/
this library will let you use Java to access the serial port on your Android device