会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
如若
人生是一个从坚持到超越的过程,我们毕生修炼,我们终将得道!
博客园
首页
新随笔
联系
管理
上一页
1
···
43
44
45
46
47
48
49
50
51
···
55
下一页
2014年4月22日
短小实用 渗透用的Python小脚本
摘要: 渗透的很多时候,找到的工具并不适用,自己码代码才是王道,下面三个程序都是渗透时在网络上找不到合适工具,自己辛苦开发的,短小实用。一、记录root密码小工具root.py#!/usr/bin/python import os, sys, getpass, time current_time = t...
阅读全文
posted @ 2014-04-22 16:10 如.若
阅读(909)
评论(0)
推荐(0)
2014年4月18日
一个对称加密、解密的方法C#工具类
摘要: 封装了一个对称加解密的类,用私钥和密钥加解密using System;using System.Collections.Generic;using System.Text;using System.IO;using System.Security.Cryptography;namespace CMD...
阅读全文
posted @ 2014-04-18 00:33 如.若
阅读(2115)
评论(0)
推荐(0)
C# 代码生成工具 Millennials
摘要: Millennials 是一个可定制的 C# 代码生成工具,支持 MVC 和三层架构、ADO.NET、Nhibernate 和 LINQ。项目主页:http://www.open-open.com/lib/view/home/1341644211026
阅读全文
posted @ 2014-04-18 00:29 如.若
阅读(588)
评论(0)
推荐(0)
c#写扩展方法
摘要: using System;using System.Collections.Generic;using System.Text;namespace Tools.Common{ /// /// 数据优化公共类 /// public static class DataHe...
阅读全文
posted @ 2014-04-18 00:26 如.若
阅读(700)
评论(0)
推荐(0)
C#反射机制学习总结
摘要: 反射的定义:审查元数据并收集关于它的类型信息的能力。元数据(编译以后的最基本数据单元)就是一大堆的表,当编译程序集或者模块时,编译器会创建一个类定义表,一个字段定义表,和一个方法定义表等。 System.reflection命名空间包含的几个类,允许你反射(解析)这些元数据表的代码,如下所示:Sys...
阅读全文
posted @ 2014-04-18 00:23 如.若
阅读(532)
评论(0)
推荐(0)
C#一个FTP操作封装类FTPHelper
摘要: 参考了网上一些代码,作了一些调整优化。using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net;using System.IO;public class FTP...
阅读全文
posted @ 2014-04-18 00:12 如.若
阅读(917)
评论(0)
推荐(0)
常用的正则表达式C#工具类
摘要: Regex类实现了一些特殊功能数据检查,正则表达式的一些常用的功能,集成至该类中。public class RegexDao { private RegexDao() { } private static RegexDao instance = null; ...
阅读全文
posted @ 2014-04-18 00:05 如.若
阅读(733)
评论(0)
推荐(0)
2014年4月17日
C#解压或压缩文件夹
摘要: 这里主要解决文件夹包含文件夹的解压缩问题。1)下载SharpZipLib.dll,在http://www.icsharpcode.net/OpenSource /SharpZipLib/Download.aspx中有最新免费版本,“Assembliesfor.NET1.1,.NET2.0,.NETC...
阅读全文
posted @ 2014-04-17 23:56 如.若
阅读(579)
评论(0)
推荐(0)
C#文件帮助类FoderHelper
摘要: using System;using System.Data;using System.Configuration;using System.Linq;using System.Web;using System.IO;using System.Collections;using System.Col...
阅读全文
posted @ 2014-04-17 23:52 如.若
阅读(992)
评论(0)
推荐(0)
C#数据库帮助类SqlHelper
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Data.OleDb;using System.Data;using System.Configuration;...
阅读全文
posted @ 2014-04-17 23:49 如.若
阅读(469)
评论(0)
推荐(0)
上一页
1
···
43
44
45
46
47
48
49
50
51
···
55
下一页
公告