dongle

Failed to send sms through wvdial (No Carrier! Trying again)

戏子无情 提交于 2020-01-16 08:36:09
问题 Problem pi@raspberrypi:/~ $ sudo wvdial --> WvDial: Internet dialer version 1.61 --> Initializing modem. --> Sending: ATZ ATZ OK --> Sending: ATQ0 V1 E1 S0=0 &C1 &D2 ATQ0 V1 E1 S0=0 &C1 &D2 OK --> Modem initialized. --> Sending: ATDT07******** --> Waiting for carrier. ATDT07******** NO CARRIER --> No Carrier! Trying again. --> Sending: ATDT07******** --> Waiting for carrier. ATDT07******** NO CARRIER --> No Carrier! Trying again. --> Sending: ATDT07******** --> Waiting for carrier. ATDT07****

Off the shelf programmable USB

可紊 提交于 2019-12-25 12:42:28
问题 Is there a way to create a programmable USB just using off the shelf USB dongles? This question: Programmable USB dongles has answers relating getting "programmable" USBs. But I just want to use an off the shelf USB. It's like this: http://www.pololu.com/product/1336 but just using off the shelf USB device. Preferably, once the USB is plugged in, an "app" can be ran off it which can be cross platform. This app can be a GUI app, but I'm fine with it being a CLI app. Would this question be

Can i crack usb security dongle?

主宰稳场 提交于 2019-12-22 20:29:23
问题 I have to develop a plugin for a program that uses dongle to activate.Just wondering can i crack the key of the usb or something else? 回答1: I'm sure you can , but you might be running afoul of the various legislation regarding the act of reverse engineering content protection systems. I am, of course, referring to the American DCMA statues. In any event, as pure thought experiment, I might try the following: Clone the USB firmware image, and load it into a virtual USB port As you say, crack

Can i crack usb security dongle?

感情迁移 提交于 2019-12-22 20:28:58
问题 I have to develop a plugin for a program that uses dongle to activate.Just wondering can i crack the key of the usb or something else? 回答1: I'm sure you can , but you might be running afoul of the various legislation regarding the act of reverse engineering content protection systems. I am, of course, referring to the American DCMA statues. In any event, as pure thought experiment, I might try the following: Clone the USB firmware image, and load it into a virtual USB port As you say, crack

What code to write for a dongle attached system to provide better security?

拥有回忆 提交于 2019-12-20 10:42:01
问题 I have developed a software piece (with C and Python) which I want to protect with dongle so that copying and reverse engineering becomes hard enough. My dongle device comes with an api which provides these: Check dongle existence Check proper dongle Write into a memory location in dongle Read from a memory location in dongle etc. (I think the rests aren't that good..) What I can do in the source code so that it becomes harder to crack. Dongle provider suggested that, I should check proper

Associative arrays in C

强颜欢笑 提交于 2019-12-17 08:33:22
问题 I am implementing a way to transfer a set of data to a programmable dongle. The dongle is based on a smart card technology and can execute an arbitrary code inside. The input and output data is passed as a binary blocks that can be accessed via input and output pointers. I would like to use an associative array to simplify the data processing code. Everything should work this way: First the host application: // Host application in C++ in_data["method"] = "calc_r"; in_data["id"] = 12; in_data[

Associative arrays in C

人盡茶涼 提交于 2019-12-17 08:33:07
问题 I am implementing a way to transfer a set of data to a programmable dongle. The dongle is based on a smart card technology and can execute an arbitrary code inside. The input and output data is passed as a binary blocks that can be accessed via input and output pointers. I would like to use an associative array to simplify the data processing code. Everything should work this way: First the host application: // Host application in C++ in_data["method"] = "calc_r"; in_data["id"] = 12; in_data[

Can i crack usb security dongle?

青春壹個敷衍的年華 提交于 2019-12-06 11:32:37
I have to develop a plugin for a program that uses dongle to activate.Just wondering can i crack the key of the usb or something else? I'm sure you can , but you might be running afoul of the various legislation regarding the act of reverse engineering content protection systems. I am, of course, referring to the American DCMA statues. In any event, as pure thought experiment, I might try the following: Clone the USB firmware image, and load it into a virtual USB port As you say, crack the key and the USB interface, and short-circuit the check in a virtual USB device. Locate the part of the

USB software protection dongle for Java with an SDK which is cross-platform “for real”. Does it exist?

懵懂的女人 提交于 2019-12-05 20:57:53
问题 What I'd like to ask is if anybody knows about an hardware USB-dongle for software protection which offers a very complete out-of-the-box API support for cross-platform Java deployments. Its SDK should provide a jar (only one, not one different library per OS & bitness) ready to be added to one's project as a library. The jar should contain all the native stuff for the various OSes and bitnesses From the application's point of view, one should continue to write (api calls) once and run

HDMI CEC on android

时光总嘲笑我的痴心妄想 提交于 2019-12-04 12:55:39
问题 I've been facing a problem to access to HDMI CEC on this android dongle. I'm trying to turn on the tv and change the input source of the tv but I was unable to it. Android API Approach I'm running a system app and I have settled <uses-permission android:name="android.permission.HDMI_CEC" /> on AndroidManifest.xml. I'm accessing to HDMI service through reflection since I was not able to access it directly, even being a system app. public class HdmiHelper { public HdmiHelper(Context context) {