<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[润丰]]></title><description><![CDATA[爱编程，爱吉他，欢迎来到润丰的工作室！吼吼，在风中亮出自己的旗帜吧！]]></description><link>https://blog.csdn.net/C_Major</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; C_Major]]></copyright><item><title><![CDATA[Linux信号说明列表]]></title><link>https://blog.csdn.net/C_Major/article/details/51556888</link><guid>https://blog.csdn.net/C_Major/article/details/51556888</guid><author>C_Major</author><pubDate>Wed, 01 Jun 2016 16:16:19 +0800</pubDate><description><![CDATA[Linux信号说明列表 
$ kill -l 
1) SIGHUP 2) SIGINT 3) SIGQUIT 4) SIGILL 
5) SIGTRAP 6) SIGABRT 7) SIGBUS 8) SIGFPE 
9) SIGKILL 10) SIGUSR1 11) SIGSEGV 12) SIGUSR2 
13) SIGPIPE 14) SIGALRM 15) SIGTERM 16) SIGS]]></description><category></category></item><item><title><![CDATA[Linux内核编程 <1> -- Hello Mod]]></title><link>https://blog.csdn.net/C_Major/article/details/51517829</link><guid>https://blog.csdn.net/C_Major/article/details/51517829</guid><author>C_Major</author><pubDate>Fri, 27 May 2016 16:31:36 +0800</pubDate><description><![CDATA[1. hello mod #include <linux/module.h>
 #include <linux/kernel.h>
 #include <linux/init.h> static int __init hello_start(void){
     printk("hello,this moudle start work!\n");
     return 0;
 } static]]></description><category></category></item><item><title><![CDATA[由__futex_syscall3略微展开]]></title><link>https://blog.csdn.net/C_Major/article/details/51517581</link><guid>https://blog.csdn.net/C_Major/article/details/51517581</guid><author>C_Major</author><pubDate>Fri, 27 May 2016 16:10:14 +0800</pubDate><description><![CDATA[1. __futex_syscall3 是啥__futex_syscall3是android bionc库(一种libc库，为了不与开源组织冲撞，特地不采用glibc)。__futex_syscall3是android的一种线程管理函数。相当于wake。该函数见于 /bionic/libc/bionic/pthread.c
int  __futex_wake_ex(volatile void *ft]]></description><category></category></item><item><title><![CDATA[4章]]></title><link>https://blog.csdn.net/C_Major/article/details/51513943</link><guid>https://blog.csdn.net/C_Major/article/details/51513943</guid><author>C_Major</author><pubDate>Fri, 27 May 2016 11:30:40 +0800</pubDate><description><![CDATA[#2通过gdb调试分析，程序在无线递归调用时，栈空间地址不断向上面写入数据，最终会导致段错误。！[------------------------------------stack-------------------------------------]
0000| 0xffffcf7c --> 0x804840a (<foo+11>:   leave)
0004| 0xffffcf80 -->]]></description><category></category></item><item><title><![CDATA[Linux使用问题杂记--解决无/var/log/messages 问题]]></title><link>https://blog.csdn.net/C_Major/article/details/51321684</link><guid>https://blog.csdn.net/C_Major/article/details/51321684</guid><author>C_Major</author><pubDate>Thu, 05 May 2016 11:54:17 +0800</pubDate><description><![CDATA[内核编程insmod后，Ubuntu查看日志无/var/log/messages写好简单内核模块如hellomod.ko后，执行命令 
insmod hellomod.ko 
后，查看内核打印的printk信息， 
tail /var/log/messages 
后发现并没有messages文件。Ubuntu是有/var/log/messages这个文件的！root@XXX:/home/river#]]></description><category></category></item><item><title><![CDATA[a.out文件格式与COFF文件格式]]></title><link>https://blog.csdn.net/C_Major/article/details/51303747</link><guid>https://blog.csdn.net/C_Major/article/details/51303747</guid><author>C_Major</author><pubDate>Tue, 03 May 2016 13:37:22 +0800</pubDate><description><![CDATA[a．out的执行文件是比较古老的可执行码，用在比较早期的UNIX系统上。Linux最初也是使用这种码来执行程序，一直到ELF格式的可执行码出来后，有愈来俞多的程序码随着ELF格式的优点而变成了ELF的可执码。将来势必完全取代a．out格式的可执行码。]]></description><category></category></item><item><title><![CDATA[实用Linux命令行 —— 进制的转换]]></title><link>https://blog.csdn.net/C_Major/article/details/51096525</link><guid>https://blog.csdn.net/C_Major/article/details/51096525</guid><author>C_Major</author><pubDate>Fri, 08 Apr 2016 14:30:11 +0800</pubDate><description><![CDATA[工作中进制的转换问题1. 你还用windows calc.exe???OH! My God! 千万别用了，太不优雅了。优雅的Linux命令行 “bc“不解释，看这里：bc –helpXXXXX@XXXX:~/code/shellcode/03_reverse_tcp_shell_with_password$ bc --help
usage: bc [options] [file ...]
  -h]]></description><category></category></item><item><title><![CDATA[实用Linux命令行-----一些字符串操作]]></title><link>https://blog.csdn.net/C_Major/article/details/51085512</link><guid>https://blog.csdn.net/C_Major/article/details/51085512</guid><author>C_Major</author><pubDate>Thu, 07 Apr 2016 14:14:37 +0800</pubDate><description><![CDATA[工作中的一些问题如上所示，在写病毒分析报告时，这些加密值要求纯大写字母。（该死的分析系统！）还有类似一些小写字母转大写。 
解决方案，Linux铁粉当然是用命令行了通篇去掉指定字符 
 
大写转小写 
成功，什么？还有sed命令！sed命令太不优雅！！！！！]]></description><category></category></item><item><title><![CDATA[Linux使用问题杂记--解决Ubuntu网络服务图标不显示]]></title><link>https://blog.csdn.net/C_Major/article/details/51004372</link><guid>https://blog.csdn.net/C_Major/article/details/51004372</guid><author>C_Major</author><pubDate>Tue, 29 Mar 2016 11:25:47 +0800</pubDate><description><![CDATA[强制关机的问题?昨晚强制关机，今早XShell链接发现链接不上，很是郁闷，去Ubuntu一看，原来是网络没连上。接着发现网络服务图标也不见了。这可如何是好。解决方法sudo vim /etc/NetworkManager.conf
...
将managed改为truesudo service network-manager restart成功]]></description><category></category></item><item><title><![CDATA[欢迎使用CSDN-markdown编辑器]]></title><link>https://blog.csdn.net/C_Major/article/details/50951513</link><guid>https://blog.csdn.net/C_Major/article/details/50951513</guid><author>C_Major</author><pubDate>Tue, 22 Mar 2016 00:08:07 +0800</pubDate><description><![CDATA[欢迎使用Markdown编辑器写博客本Markdown编辑器使用StackEdit修改而来，用它写博客，将会带来全新的体验哦：
Markdown和扩展Markdown简洁的语法
代码块高亮
图片链接和图片上传
LaTex数学公式
UML序列图和流程图
离线写博客
导入导出Markdown文件
丰富的快捷键
快捷键
加粗    Ctrl + B 
斜体    Ctrl + I 
引用    Ctrl]]></description><category></category></item><item><title><![CDATA[Ubuntu 安装SVN]]></title><link>https://blog.csdn.net/C_Major/article/details/50402223</link><guid>https://blog.csdn.net/C_Major/article/details/50402223</guid><author>C_Major</author><pubDate>Fri, 25 Dec 2015 11:41:14 +0800</pubDate><description><![CDATA[安装gclientgclient是deptools的子项目，先安装deptoolsgit clone https://chromium.googlesource.com/chromium/tools/depot_tools.git这个需要翻墙。 
然后运行下面命令，添加环境变量，这里的pwd是你的depot_tools目录路径，当然你也可以进到目录，然后运行该命令，pwd就是当前路径命令。river]]></description><category></category></item><item><title><![CDATA[Ubuntu安装SVN]]></title><link>https://blog.csdn.net/C_Major/article/details/50401577</link><guid>https://blog.csdn.net/C_Major/article/details/50401577</guid><author>C_Major</author><pubDate>Fri, 25 Dec 2015 10:24:05 +0800</pubDate><description><![CDATA[Ubuntu安装SVN安装SVN安装命令sudo apt-get install subversion启动svn服务安装完毕后，SVN的服务默认没有启动的。SVN服务绑定端口号是3690。可用相关Linux命令查看。 
服务启动命令：svnserve -d****@ubuntu:~$ netstat -ntlp |grep 3690
(Not all processes could be ident]]></description><category></category></item><item><title><![CDATA[逆向CTF (linux)]]></title><link>https://blog.csdn.net/C_Major/article/details/50293081</link><guid>https://blog.csdn.net/C_Major/article/details/50293081</guid><author>C_Major</author><pubDate>Mon, 14 Dec 2015 12:11:07 +0800</pubDate><description><![CDATA[转载:https://github.com/ByteBandits/writeups/blob/master/9447-2015/reversing/The%20real%20flag%20finder/sudhackar/README.mdThe real flag finder (Reversing 70)I’ve forgotten my flag. I remember it has the]]></description><category></category></item><item><title><![CDATA[Android CTF SECCON 2015 – Reverse engineering Android APK 2 – 400]]></title><link>https://blog.csdn.net/C_Major/article/details/50292935</link><guid>https://blog.csdn.net/C_Major/article/details/50292935</guid><author>C_Major</author><pubDate>Mon, 14 Dec 2015 11:53:56 +0800</pubDate><description><![CDATA[SECCON 2015 – Reverse engineering Android APK 2 – 400 writeupThis is a writeup for the SECCON 2015 CTF challenge “Reverse-Engineering Android APK 2” for 400 points. The hint was: “The key is stored in]]></description><category></category></item><item><title><![CDATA[Android CTF Reverse-Engineering Android APK 1[binary][100]]]></title><link>https://blog.csdn.net/C_Major/article/details/50292701</link><guid>https://blog.csdn.net/C_Major/article/details/50292701</guid><author>C_Major</author><pubDate>Mon, 14 Dec 2015 11:38:27 +0800</pubDate><description><![CDATA[[SECCON2015]Reverse-Engineering Android APK 1[binary][100]6 DECEMBER 2015 ASCOPECTFLEAVE A COMMENT 
SECCON 2015 – CTF [Jeopardy]Reverse-Engineering Android APK 1 [binary] – 100 ptsDESCRIPTION OF THE CH]]></description><category></category></item><item><title><![CDATA[用jQuery实现省市区三级联动（可做插件）]]></title><link>https://blog.csdn.net/C_Major/article/details/45890547</link><guid>https://blog.csdn.net/C_Major/article/details/45890547</guid><author>C_Major</author><pubDate>Thu, 21 May 2015 13:13:10 +0800</pubDate><description><![CDATA[用jQuery实现省市区三级联动（可做插件）

有参考别的文档，如有雷同，不胜感激



先上效果图



上三级联动代码

city.html



html>
head>
title>city.htmltitle>

meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
meta http]]></description><category></category></item><item><title><![CDATA[java位运算(转)]]></title><link>https://blog.csdn.net/C_Major/article/details/45866007</link><guid>https://blog.csdn.net/C_Major/article/details/45866007</guid><author>C_Major</author><pubDate>Wed, 20 May 2015 08:42:49 +0800</pubDate><description><![CDATA[java位运算




位移动运算符:

例如：3 
1）把3转换为二进制数字0000 0000 0000 0000 0000 0000 0000 0011， 
2）把该数字高位(左侧)的两个零移出，其他的数字都朝左平移2位， 
3）在低位(右侧)的两个空位补零。则得到的最终结果是0000 0000 0000 0000 0000 0000 0000 1100， 
转换为十进制]]></description><category></category></item><item><title><![CDATA[java之memcpy(转)]]></title><link>https://blog.csdn.net/C_Major/article/details/45673861</link><guid>https://blog.csdn.net/C_Major/article/details/45673861</guid><author>C_Major</author><pubDate>Tue, 12 May 2015 19:39:00 +0800</pubDate><description><![CDATA[转载自：

http://my.oschina.net/songchang/blog/169495


题记：
  因项目需要将之前C++的一个小算法用JAVA重写，此小算法用到了C++随地可见的内存操作，对于刚刚接触java的我，可傻眼了，都说JAVA没有提供内存操作。后经同事提醒，JAVA有位操作，才得以解决


c++的memcpy做了些什么？
想要了解此问题，先要了解数据]]></description><category></category></item><item><title><![CDATA[Android Bundle类（转）]]></title><link>https://blog.csdn.net/C_Major/article/details/45668669</link><guid>https://blog.csdn.net/C_Major/article/details/45668669</guid><author>C_Major</author><pubDate>Tue, 12 May 2015 13:54:58 +0800</pubDate><description><![CDATA[转载自：http://blog.csdn.net/randyjiawenjie/article/details/6651437




今天发现自己连Bundle类都没有搞清楚，于是花时间研究了一下。

根据google官方的文档（http://developer.android.com/reference/android/os/Bundle.html）



Bundle类]]></description><category></category></item><item><title><![CDATA[Google Java编程风格指南(转)]]></title><link>https://blog.csdn.net/C_Major/article/details/45619413</link><guid>https://blog.csdn.net/C_Major/article/details/45619413</guid><author>C_Major</author><pubDate>Sun, 10 May 2015 11:28:12 +0800</pubDate><description><![CDATA[Google Java编程风格指南

January 20, 2014

作者：Hawstein
出处：http://hawstein.com/posts/google-java-style.html
声明：本文采用以下协议进行授权： 自由转载-非商用-非衍生-保持署名|Creative Commons BY-NC-ND 3.0 ，转载请注明作者及出处。



目录

前言]]></description><category></category></item></channel></rss>