<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
<channel>
<title>icodeviruses.com :: underground blasphemy</title>
<description>hacking community</description>
<link>http://icodeviruses.com/</link>
<item>
<link>http://icodeviruses.com/forum.virus?seed=2820</link>
<guid isPermaLink="true">http://icodeviruses.com/forum.virus?seed=2820</guid>
<title>c++ DoublyLinkedList</title>
<description><![CDATA[I have been learning c++ recently and I am trying to create a linked list using template classes and methods. I am sure I am not doing it right, but I really cant find a tutorial that explains how to do it in my particular case. Can someone guide me in the right direction on how to implement this the correct way. Thanks in advance.<br />
<br />
[code]<br />
#ifndef NODE_H<br />
#define	NODE_H<br />
<br />
#include &lt;cstdlib&gt;<br />
<br />
template &lt;typename T&gt;<br />
class Node {<br />
public:<br />
    Node(T object);<br />
    Node(const Node&amp; orig);<br />
    virtual ~Node();<br />
    <br />
private:<br />
    Node&lt;T*&gt; _next;<br />
    Node&lt;T*&gt; _prev;<br />
    T* _object;<br />
    <br />
    friend class List;<br />
};<br />
<br />
/*<br />
 * Implementation of the Node class<br />
 */<br />
Node::Node(T object) {<br />
    _object = object;<br />
    _next = NULL;<br />
}<br />
<br />
Node::Node(const Node&amp; orig) {<br />
}<br />
<br />
Node::~Node() {<br />
    delete _object;<br />
    delete _next;<br />
    delete _prev;<br />
}<br />
<br />
template &lt;typename T&gt; Node&lt;T*&gt; Node::getNext() {<br />
    return _next;<br />
}<br />
<br />
template &lt;typename T&gt; Node&lt;T*&gt; Node::getPrev() {<br />
    return _prev;<br />
}<br />
<br />
template &lt;typename T&gt; T* Node::getObject() {<br />
    return _object;<br />
}<br />
<br />
#endif	/* NODE_H */<br />
<br />
[/code]<br />
<br />
[code]<br />
#ifndef LIST_H<br />
#define	LIST_H<br />
<br />
#include &lt;cstdlib&gt;<br />
#include &quot;Node.h&quot;<br />
<br />
template &lt;typename T&gt;<br />
class List {<br />
public:<br />
    List();<br />
    List(const List&amp; orig);<br />
    virtual ~List();<br />
    void front_insert(T object);<br />
    void tail_insert(T object);<br />
    T* find(T* object);<br />
private:<br />
    Node&lt;T*&gt; _head;<br />
    Node&lt;T*&gt; _tail;<br />
};<br />
<br />
//make the head and tail point to each other<br />
List::List() {<br />
    _head-&gt;_next= _tail;<br />
    _head-&gt;_prev = NULL;<br />
    _tail-&gt;_prev = _head;<br />
    _tail-&gt;_next = NULL;<br />
}<br />
<br />
template &lt;typename T&gt; T* List::find(T object) {<br />
    <br />
}<br />
<br />
template &lt;typename T&gt; void List::front_insert(T* object) {<br />
    if(_head == NULL) {<br />
       _head-&gt;_next = new Node&lt;object&gt;(object);<br />
    }<br />
    else {<br />
        Node* temp = _head;<br />
        while(temp-&gt;_next != NULL) {<br />
            temp = temp-&gt;_next;<br />
        }<br />
        temp-&gt;_next = new Node&lt;object&gt;(object);<br />
        temp-&gt;_next-&gt;_prev = temp;<br />
    }<br />
}<br />
<br />
template &lt;typename T&gt; void List::tail_insert(T* object) {<br />
    <br />
}<br />
<br />
#endif	/* LIST_H */<br />
<br />
[/code]<br />
I have done most all of my programming and in Java and Objective-c. I want to migrate to more powerful languages so I am a complete noob at c++. ]]></description>
<pubDate>Thu, 17 May 2012 23:19:53 -0400</pubDate>
</item>
<item>
<link>http://icodeviruses.com/forum.virus?seed=2819</link>
<guid isPermaLink="true">http://icodeviruses.com/forum.virus?seed=2819</guid>
<title>fifa12 ultimate</title>
<description><![CDATA[hey guys I need to figure out a program because some how some one has a program that allows him to hack any one of fifa12 with out any details and I have fell victim and I need away of how it works or if there is a program that can do that]]></description>
<pubDate>Sun, 13 May 2012 12:06:05 -0400</pubDate>
</item>
<item>
<link>http://icodeviruses.com/forum.virus?seed=2816</link>
<guid isPermaLink="true">http://icodeviruses.com/forum.virus?seed=2816</guid>
<title>c++ streams</title>
<description><![CDATA[I am current writing a c++ program will write a file to disk at a sector that you choose. I am using an fstream and was wondering why it would not let me run when i used it fstream as a pointer. Can you explain this to me. I am farily new to c++. <br />
<br />
FILE.H<br />
[code]<br />
/*<br />
 * File.h <br />
 * This file is designed to hold characteristics about the source<br />
 * that you are writing to disk. <br />
 */<br />
#ifndef FILE_H<br />
#define File_H <br />
 <br />
#include &lt;string&gt;<br />
#include &lt;iostream&gt;<br />
#include &lt;fstream&gt;<br />
 <br />
<br />
 class File {<br />
     <br />
     public:		<br />
		File(std::string path, std::string target);<br />
		<br />
		//set the path to the file<br />
		void setFilePath(std::string path);<br />
 <br />
		//get the size of the file in bytes<br />
		int getSize(void);<br />
 <br />
		//get the file type<br />
		std::string fileType(void);<br />
                <br />
                //return a representation of the file a string<br />
                std::string toString(void);<br />
                <br />
                //set the path of the target disk<br />
                void setTarget(std::string targetPath);<br />
     <br />
	private:<br />
		std::string filePath;<br />
                std::string targetPath;<br />
		std::string file_type;  //binary, hex, text<br />
		int size_in_bytes;	<br />
                <br />
                std::fstream inputFile;<br />
                std::fstream outputFile; 		<br />
};<br />
<br />
#endif<br />
[/code]<br />
<br />
This constructor worked fine<br />
FILE.CPP<br />
[code]<br />
/*<br />
 *	Implementation of &quot;File.h&quot;<br />
 */<br />
#include &lt;iostream&gt;<br />
#include &lt;fstream&gt;<br />
#include &quot;File.h&quot;<br />
<br />
using namespace std; <br />
<br />
 File::File(std::string path, std::string target) {<br />
     inputFile.open(path.c_str());<br />
    <br />
     if(!inputFile.is_open()) {  //test to see if the file opened correctly<br />
         cerr &lt;&lt; &quot;open error&quot;;<br />
     }<br />
     <br />
     filePath = path;<br />
 }<br />
 <br />
 void File::setFilePath(std::string path) {<br />
     filePath = path;<br />
 }<br />
 <br />
 int File::getSize(void) {<br />
	return size_in_bytes;<br />
}<br />
<br />
std::string File::fileType(void) {<br />
	return file_type;<br />
}<br />
<br />
std::string File::toString(void) {<br />
    std::string retval = filePath ;<br />
    return retval;<br />
}<br />
[/code]<br />
<br />
The program would still compile but would not run exit status 1<br />
[code]<br />
the only difference in my file.h was <br />
std::fstream *inputFile;<br />
std::fstream *outputFile;<br />
<br />
FILE.CPP<br />
/*<br />
 *	Implementation of &quot;File.h&quot;<br />
 */<br />
#include &lt;iostream&gt;<br />
#include &lt;fstream&gt;<br />
#include &quot;File.h&quot;<br />
<br />
using namespace std; <br />
<br />
 File::File(std::string path, std::string target) {<br />
     inputFile-&gt;open(path.c_str());<br />
    <br />
     if(!inputFile.is_open()) {  //test to see if the file opened correctly<br />
         cerr &lt;&lt; &quot;open error&quot;;<br />
     }<br />
     <br />
     filePath = path;<br />
 }<br />
 <br />
 void File::setFilePath(std::string path) {<br />
     filePath = path;<br />
 }<br />
 <br />
 int File::getSize(void) {<br />
	return size_in_bytes;<br />
}<br />
<br />
std::string File::fileType(void) {<br />
	return file_type;<br />
}<br />
<br />
std::string File::toString(void) {<br />
    std::string retval = filePath ;<br />
    return retval;<br />
}<br />
[/code]<br />
thanks in advance]]></description>
<pubDate>Fri, 10 Feb 2012 10:46:51 -0500</pubDate>
</item>
<item>
<link>http://icodeviruses.com/forum.virus?seed=2814</link>
<guid isPermaLink="true">http://icodeviruses.com/forum.virus?seed=2814</guid>
<title>IBM portable 5155</title>
<description><![CDATA[I brought an IBM portable 5155 at a garage sale for $5 and i was wondering what kind of OS this dam thing has. I tried looking it up and i couldnt find any of the commands and stuff. This thing has a 256kb hard drive. How fun is this shit. i wanna know what fun stuff i can do with it, which probably wont be much XD]]></description>
<pubDate>Sat, 10 Dec 2011 14:41:41 -0500</pubDate>
</item>
<item>
<link>http://icodeviruses.com/forum.virus?seed=2812</link>
<guid isPermaLink="true">http://icodeviruses.com/forum.virus?seed=2812</guid>
<title>Greetings ICV</title>
<description><![CDATA[Hi world famous RedD3ath here. Assuming my world is the only world you live in. Here is a little about me with out boring yourself to tears. I am a pentester, a self-taught developer, and a dire lover of technology and knowledge itself. Ever since I was born I’ve always been a “Curious George” I guess you could say. Moreover, I am a CCNA (Cisco Certified Network Associate) and currently training for more certifications such as A+, CISSP, and CEH and working towards a Bachelor’s degree in Information Technology. In the meantime,  apart from writing various technology blog posts I like to spend my time studying about Hacking and Computer languages as well as spoken languages such as Hebrew, Greek, and Aramaic. I also read a ton books mainly informational and computer books but I own a few fiction novels as well. My hopes in future are that I aspire to work as a Security Analyst or Systems Administrator. As for ICV my hopes are to conglomerate with a circle knowledgeable people in my circle of collective knowledge. Where you learn from me and I learn from you. My motto is knowledge and boy do I love to learn. I soak it up. Moreover, thanks to ICV for such an awesome forum and the knowledge shared here. I look forward to meeting some of you.]]></description>
<pubDate>Fri, 11 Nov 2011 23:03:20 -0500</pubDate>
</item>
<item>
<link>http://icodeviruses.com/forum.virus?seed=2811</link>
<guid isPermaLink="true">http://icodeviruses.com/forum.virus?seed=2811</guid>
<title>Hi.</title>
<description><![CDATA[I'm new at this. I'm also kind of old. I am here because my computer was hacked. When it happened I was fortunate enough to  know that something was not right. I paid a guy $100 to fix it. While he was fixing it he turned me on to 1337 h4xor h4ndb00k.  I want to be more knowledgeable about computers. Not just my computer but about the world of computers/coding/etc. in general. <br />
<br />
Yes, I've rtfm. I haven't started any coding projects yet because I am still rtfm. When I finish the book I am going back to work on the projects. I'm hoping to further advance my learning through this forum. I'll try not to do/say any stupid shit. <br />
<br />
FWIW, I am a classically trained musician (composer/double bass). I love metal.<br />
<br />
s]]></description>
<pubDate>Sun, 16 Oct 2011 09:56:48 -0400</pubDate>
</item>
<item>
<link>http://icodeviruses.com/forum.virus?seed=2810</link>
<guid isPermaLink="true">http://icodeviruses.com/forum.virus?seed=2810</guid>
<title>Downtime</title>
<description><![CDATA[And it's back up.  Sorry.]]></description>
<pubDate>Sat, 01 Oct 2011 18:15:07 -0400</pubDate>
</item>
<item>
<link>http://icodeviruses.com/forum.virus?seed=2809</link>
<guid isPermaLink="true">http://icodeviruses.com/forum.virus?seed=2809</guid>
<title>Need suggestions and advice</title>
<description><![CDATA[Hello everybody,<br />
<br />
It's been a while , isn't it.I am studying and I was thinking of starting some kind of project, so I decided I would make a 'website'.So skills I have are very low for instance I know HTML, Basic CSS, Very basic JavaScript.And I know nothing of networking.<br />
<br />
Still I am adamant on starting this project so I can learn while write scripts, so does anyone know any book which guides in such a direction or any website which has detailed guidelines.<br />
<br />
And does any one know a free server-service where anyone can upload their sites...etc? I am trying to learn by writing , so I hope all my friends here would advice and suggest me with important things which I should keep in mind.<br />
<br />
Suggestions and constructive criticism are welcomed.Thank you.<br />
<br />
Regards.<br />
<br />
 ]]></description>
<pubDate>Tue, 06 Sep 2011 04:23:53 -0400</pubDate>
</item>
<item>
<link>http://icodeviruses.com/forum.virus?seed=2808</link>
<guid isPermaLink="true">http://icodeviruses.com/forum.virus?seed=2808</guid>
<title>Need suggestions and advice</title>
<description><![CDATA[Hello everybody,<br />
<br />
It's been a while , isn't it.I am studying and I was thinking of starting some kind of project, so I decided I would make a 'website'.So skills I have are very low for instance I know HTML, Basic CSS, Very basic JavaScript.And I know nothing of networking.<br />
<br />
Still I am adamant on starting this project so I can learn while write scripts, so does anyone know any book which guides in such a direction or any website which has detailed guidelines.<br />
<br />
And does any one know a free server-service where anyone can upload their sites...etc? I am trying to learn by writing , so I hope all my friends here would advice and suggest me with important things which I should keep in mind.<br />
<br />
Suggestions and constructive criticism are welcomed.Thank you.<br />
<br />
Regards.<br />
<br />
 ]]></description>
<pubDate>Tue, 06 Sep 2011 04:20:40 -0400</pubDate>
</item>
<item>
<link>http://icodeviruses.com/forum.virus?seed=2807</link>
<guid isPermaLink="true">http://icodeviruses.com/forum.virus?seed=2807</guid>
<title> xbox live algorithm</title>
<description><![CDATA[hi guys recently i was looking at an xbox live code and i had a thought that it must use algorithm like a credit and am not really good with algorithms and am goin to learn but is there anyone who knows a way past the xbl codes or the algorithm]]></description>
<pubDate>Sat, 03 Sep 2011 16:52:28 -0400</pubDate>
</item>
</channel>
</rss>
