beacon

APT29_CozyBear_Dukes资料

守給你的承諾、 提交于 2020-04-06 13:52:25
Dukes、APT29、CozyBear PolyglotDuke、RegDuke、FatDuke、MiniDuke、 PinchDuke、OnionDuke、CosmicDuke 在2016年12月美国DHS关于APT28,APT29组织在同年针对 民主党全国委员会 的XX事件以及干扰美国大选活动发布了相关调查报告,并将其恶意gongji活动称为GRIZZLY STEPPE,并直指俄罗斯情报部门。 涉嫌参与2016年美国大选前违反民主党全国委员会(DNC) 活动时间表: https://forum.anomali.com/t/apt29-a-timeline-of-malicious-activity/2480 样本IOC http://contagiodump.blogspot.com/2017/03/part-ii-apt29-russian-apt-including.html https://github.com/eset/malware-ioc/tree/master/dukes https://malpedia.caad.fkie.fraunhofer.de/actor/apt_29 2014年7月3日 Miniduke https://securelist.com/the-miniduke-mystery-pdf-0-day-government-spy

Randomize Mac Address in BLE

会有一股神秘感。 提交于 2020-03-04 05:04:10
问题 I have made one app which turns iOS device to beacon. Now when I scan BLE devices from android device I got that iOS device in scan list but issue is every time I got random Mac address. So, my question is: Is this default behaviour means getting random mac address? I have checked all question on stack overflow and got same answer but still I want to confirm it? Also, if changing mac address is default behaviour then can we get when mac address changed? Same for android as well, If my android

Ardupilot中新增beacon设备

£可爱£侵袭症+ 提交于 2020-02-26 14:27:57
Ardupilot中新增beacon设备 ctime:2019-04-02 16:15:52 +0800|1554192952 标签(空格分隔): 技术 ardupilot的串口与beacon大致情况在之前都写过了。这里不再赘述,直接写我新增的INF(无穷未来)的驱动手册吧。 加入驱动文件 在AP_Beacon文件夹中,加入AP_Beacon_Frompi.cpp 及相应的头文件。 增加Beacon设备枚举 在AP_Beacon.h文件中,增加AP_BeaconType的枚举成员,这里命名为了AP_BeaconType_INF,值为3。 在var_info数组中,修改_TYPE常量的值,改为3,即使用AP_BeaconType_INF。 _LATITUDE 和 _LONGITUDE 可以在这里直接设置,也可以在MP里设置。 增加串口协议枚举 在AP_SerialManager.h中,增加SerialProtocol的枚举成员,这里命名为SerialProtocol_UWB_INF,值为20。 在在AP_SerialManager.cpp中init()函数下,增加新枚举成员的case: case SerialProtocol_UWB_INF: // add by huangcanming in 2019.3.13 case SerialProtocol_UWB: // ad by

Error in Beacon project

ぃ、小莉子 提交于 2020-01-17 15:45:15
问题 let region = CLBeaconRegion(proximityUUID: NSUUID(UUIDString: "(the appropriate UUID for my beacons)", identifier: "Estimotes") The above line of code in my project is giving me an error stating: init(UUIDString;)' has been renamed to 'init(uuidString:)' Any solution? 回答1: In Swift 3.0, "UUIDString" is changed in "uuidString". After the unique UUID for your beacon, you have to insert "as! UUID". So, you have to change your let like this: let region = CLBeaconRegion(proximityUUID: NSUUID

Error in Beacon project

依然范特西╮ 提交于 2020-01-17 15:41:12
问题 let region = CLBeaconRegion(proximityUUID: NSUUID(UUIDString: "(the appropriate UUID for my beacons)", identifier: "Estimotes") The above line of code in my project is giving me an error stating: init(UUIDString;)' has been renamed to 'init(uuidString:)' Any solution? 回答1: In Swift 3.0, "UUIDString" is changed in "uuidString". After the unique UUID for your beacon, you have to insert "as! UUID". So, you have to change your let like this: let region = CLBeaconRegion(proximityUUID: NSUUID

No eddystone service in Radius beacons?

与世无争的帅哥 提交于 2020-01-07 02:52:31
问题 I am building an android app and I am trying to read the available services of my Radius Networks Radbeacon. I have clicked the beacon so that it comes to connectible mode. The available services are the following: BluetoothGatt: onGetService() - Device=0C:F3:EE:04:2B:57 UUID=00001800-0000-1000-8000-00805f9b34fb BluetoothGatt: onGetService() - Device=0C:F3:EE:04:2B:57 UUID=f0cec428-2ebb-47ab-a753-0ce09e9fe64b ..and no Eddystone service (a3c87500-8ed3-4bdf-8a39-a01bebede295) , even though it

AltBeacon not detect beacon when app is closed

僤鯓⒐⒋嵵緔 提交于 2020-01-06 20:18:08
问题 The library continue scanning correctly but not detect the beacon in this mode. I have read in many places, but they are very different opinions between whether this is possible or not. (I want to think it is) In IOS , this same implementation using the native sdk could be implemented without any inconvenience, it seems a little tricky in android. Works perfect when is foreground and background. This is my beaconManager configuration: public void setUpBeaconManager() throws RemoteException {

Beacon based app suggestion on lock screen not shown in iOS 10

你说的曾经没有我的故事 提交于 2020-01-02 09:12:37
问题 My app uses background beacon scanning. I have written locationManager.requestAlwaysAuthorization() and locationManager.startMonitoring(for: region) in my code. When I open the beacon, the lock screen of my iPad mini (iOS 9.3) shows my APP's icon. However, it's not shown on the lock screen of my iPhone 5s (iOS 10.3). I have checked the didDetermineState , didEnterRegion , didExitRegion callbacks. All of them works fine on both devices. Is it a bug or should I do some additional settings to

Beacon monitoring after reboot with iOS10

扶醉桌前 提交于 2019-12-30 13:27:35
问题 With iOS9, my app was able to detect beacons even iPhone was restarting. With iOS10 this feature is no more working. It seems that with iOS10 "monitored beacon list" is not restarted agter a phone reboot. Any idea ? 回答1: There have been a number of reports of failing to monitor beacons in the background after an upgrade to iOS 10. Try this: Setting -> General -> Reset -> Reset Network Settings Launch your app, verifying beacon detection in the foreground Turn off your beacon or leave range to

Google nearby API background scan doesn´t work after application kill

烂漫一生 提交于 2019-12-30 07:00:10
问题 I have kontakt.io beacon and I try to write application for background scanning with nearby API. I use this method to subscribe messages: SubscribeOptions options = new SubscribeOptions.Builder() // Finds messages attached to BLE beacons. See // https://developers.google.com/beacons/ .setStrategy(Strategy.BLE_ONLY) .build(); Nearby.Messages.subscribe(mGoogleApiClient, getPendingIntent(), options) .setResultCallback(new ResultCallback<Status>() { @Override public void onResult(@NonNull Status