http://RtxServerIp:8012/userlist.php#泄漏公司所有rtx用户http://RtxServerIp:8012/getmobile.cgi?receiver=#泄漏用户手机号http://RtxServerIp:8012/check.php#验证弱口令此脚本只是用于抓取用户信息#-*-coding=utf-8-*-
#date:2015年5月5日
#author:sanr
#rtxhack
importre..
分类:
其他好文 时间:
2015-05-05 12:47:38
阅读次数:
156
请声明出处:
MessageReceiver,这个类是一个消息接受的基类:
/**
* A multiple message receiver to be invoked by a message relay
* 多个消息接收器调用消息传递
* @short A multiple message receiver
* @short 多个消息接收器
*/
class YATE_...
(一)四大组件: 活动(Activity),广播接收器(Broadcast Receiver),服务(Service),内容提供器(Content Provider)(二)Android工程程序结构 src:放置源代码的文件夹 gen:系统自动生成标识资源ID的文件,不要手动更改 assets...
分类:
移动开发 时间:
2015-05-01 10:36:06
阅读次数:
120
概述:下面将介绍如何在Spring下集成ActiveMQ。消费者:同步接收;目的地:Queue环境:共5个文件Receiver.javaReceiverTest.javaSender.javaSenderTest.javaapplicationContext.xml使用的jar包如下:源文件:Rec...
分类:
编程语言 时间:
2015-04-30 12:13:44
阅读次数:
241
一、 目标 利用BroadcastReceive获取去电广播,并获取去电号码,再查询数据库获取归属信息;二、代码实现: 1、在广播包(receiver)下新建一个类(取名OutCallReceiver)继承BroadcastReceive; 2、在清单文件中注册,意图过滤器(inter-fil...
分类:
移动开发 时间:
2015-04-29 23:08:16
阅读次数:
239
数据链路protocol1.stop-waitsender发一帧之后停止,等待receiver收到一帧后,传回一个feedbacksender等到feedback之后才传下一帧若feedback传丢了?待timeout之后sender会重发相同的帧,receiver收到了重复的帧,造成error解决...
分类:
其他好文 时间:
2015-04-29 21:29:35
阅读次数:
102
??
BrocastReceiver用法:
1、继承BroadcastReceiver类
2、重写onReceive函数(见最下面代码)
3、在Mainfest文件中注册receiver
自定义BrocastReceiver
-->
4、在Activity中启用BrocastRec...
分类:
移动开发 时间:
2015-04-27 16:59:31
阅读次数:
204
package com.eyugame.modle;
/**
* 命令模式
* @author JYC506
*
*/
public class MyCommand implements ICommand{
private Receiver receiver;
public MyCommand(Receiver receiver) {
super();
this.rec...
分类:
其他好文 时间:
2015-04-27 11:17:44
阅读次数:
105
#一个最简单的事件总线实现 [MicroBus](https://github.com/konmik/MicroBus) ##使用 注册 class Receiver implements MicroBus.BusEventReceiver { public onCreate() { bus.register(this, String.class); } pu...
分类:
编程语言 时间:
2015-04-26 16:55:20
阅读次数:
150
Android的三个基本组件——Activity,Service和Broadcast Receiver——都是通过Intent机制激活的,不同类型的组件有不同的传递Intent方式,我们经常使用intent,但若不认真分析intent,确经常云里雾里的.
那么什么是intent呐,意图,就是你要通过i可以通过intent干些什么事。是一个将要执行的动作的抽象的描述,由Intent...
分类:
移动开发 时间:
2015-04-26 09:27:30
阅读次数:
203