Author Topic: Portable .NET  (Read 8407 times)

A12danrulz

  • Leader
  • Hero Member
  • *****
  • Posts: 4018
  • Reputation: 216
  • Badges:
Re: Portable .NET
« Reply #30 on: June 22, 2011, 05:25:58 pm »
Run clrwrap as root

LankAsif

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 2392
  • Reputation: 90
  • Forum pride 8)
  • Badges:
  • Computers: i7 with bits and pieces
  • iDevices: iPod Touch 1G (Basically storage for iNinja tools), iPhone 5
Re: Portable .NET
« Reply #31 on: June 22, 2011, 05:29:35 pm »
command not found
EDIT: my bad, typed clwrap.
got
[--clr=NAME] [program-args]
« Last Edit: June 22, 2011, 05:31:31 pm by LankAsif »

Education is never achieved by wise men. it is only believed to have been achieved by fools

A12danrulz

  • Leader
  • Hero Member
  • *****
  • Posts: 4018
  • Reputation: 216
  • Badges:
Re: Portable .NET
« Reply #32 on: June 22, 2011, 05:30:14 pm »
Exactly.

LankAsif

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 2392
  • Reputation: 90
  • Forum pride 8)
  • Badges:
  • Computers: i7 with bits and pieces
  • iDevices: iPod Touch 1G (Basically storage for iNinja tools), iPhone 5
Re: Portable .NET
« Reply #33 on: June 22, 2011, 05:32:56 pm »
Doh *smacks head against keyboardkjdfhxgljksdhf*

Education is never achieved by wise men. it is only believed to have been achieved by fools

C0deH4cker

  • Hero Member
  • *****
  • Posts: 2849
  • Reputation: 129
  • I am leaving iNinjas. Contact me via email.
  • Badges:
  • iDevices: iPhone 4S 16gb Black (5.1.1), iPad 2 32gb White (5.0.1), iPod Touch 2G 8gb (4.2.1)
Re: Portable .NET
« Reply #34 on: June 22, 2011, 06:22:33 pm »
Run: cscc -o hellocs.exe hello.cs
clrwrap hellocs.exe

Don't like seeing ads? Click here to register!

LankAsif

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 2392
  • Reputation: 90
  • Forum pride 8)
  • Badges:
  • Computers: i7 with bits and pieces
  • iDevices: iPod Touch 1G (Basically storage for iNinja tools), iPhone 5
Re: Portable .NET
« Reply #35 on: June 22, 2011, 06:26:03 pm »
cscc No input files.


I just put in "cscc -o hellocs.exe hello.cs"
as I suspected that "clrwrap hellocs.exe" was the next line??

Education is never achieved by wise men. it is only believed to have been achieved by fools

C0deH4cker

  • Hero Member
  • *****
  • Posts: 2849
  • Reputation: 129
  • I am leaving iNinjas. Contact me via email.
  • Badges:
  • iDevices: iPhone 4S 16gb Black (5.1.1), iPad 2 32gb White (5.0.1), iPod Touch 2G 8gb (4.2.1)
Re: Portable .NET
« Reply #36 on: June 22, 2011, 06:34:21 pm »
Is hello.cs in that dir??

Nvm, just copy and paste this script into /var/mobile/testPnet.sh
Code: ("bash") [Select]
#!/bin/bash
wget https://ininjas.com/beta/other/hello.cs
cscc -o hellocs.exe hello.cs
clrwrap hellocs.exe

Instructions: open terminal
su
alpine
cd /var/mobile
./testPnet.sh

LankAsif

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 2392
  • Reputation: 90
  • Forum pride 8)
  • Badges:
  • Computers: i7 with bits and pieces
  • iDevices: iPod Touch 1G (Basically storage for iNinja tools), iPhone 5
Re: Portable .NET
« Reply #37 on: June 22, 2011, 06:36:50 pm »
Is hello.cs in that dir??

Nvm, just copy and paste this script into /var/mobile/testPnet.sh
Code: ("bash") [Select]
#!/bin/bash
wget https://ininjas.com/beta/other/hello.cs
cscc -o hellocs.exe hello.cs
clrwrap hellocs.exe

Instructions: open terminal
su
alpine
cd /var/mobile
./testPnet.sh
cool, will do.
LOL - not alpine  :o

Education is never achieved by wise men. it is only believed to have been achieved by fools

LankAsif

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 2392
  • Reputation: 90
  • Forum pride 8)
  • Badges:
  • Computers: i7 with bits and pieces
  • iDevices: iPod Touch 1G (Basically storage for iNinja tools), iPhone 5
Re: Portable .NET
« Reply #38 on: June 22, 2011, 06:46:09 pm »
Irritating. I log in as root and perform and then get sh: ./testPnet.sh Permission denied
Why, I'm root?! aaaargh
sorry

Education is never achieved by wise men. it is only believed to have been achieved by fools

C0deH4cker

  • Hero Member
  • *****
  • Posts: 2849
  • Reputation: 129
  • I am leaving iNinjas. Contact me via email.
  • Badges:
  • iDevices: iPhone 4S 16gb Black (5.1.1), iPad 2 32gb White (5.0.1), iPod Touch 2G 8gb (4.2.1)
Re: Portable .NET
« Reply #39 on: June 22, 2011, 06:48:13 pm »
Go to /var/mobile and do this:
chmod +x testPnet.sh

Don't like seeing ads? Click here to register!

LankAsif

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 2392
  • Reputation: 90
  • Forum pride 8)
  • Badges:
  • Computers: i7 with bits and pieces
  • iDevices: iPod Touch 1G (Basically storage for iNinja tools), iPhone 5
Re: Portable .NET
« Reply #40 on: June 22, 2011, 06:53:45 pm »
Does this help?

Education is never achieved by wise men. it is only believed to have been achieved by fools

C0deH4cker

  • Hero Member
  • *****
  • Posts: 2849
  • Reputation: 129
  • I am leaving iNinjas. Contact me via email.
  • Badges:
  • iDevices: iPhone 4S 16gb Black (5.1.1), iPad 2 32gb White (5.0.1), iPod Touch 2G 8gb (4.2.1)
Re: Portable .NET
« Reply #41 on: June 22, 2011, 07:16:59 pm »
Does this help?
Instead of ./testPnet.sh, do bash testPnet.sh

LankAsif

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 2392
  • Reputation: 90
  • Forum pride 8)
  • Badges:
  • Computers: i7 with bits and pieces
  • iDevices: iPod Touch 1G (Basically storage for iNinja tools), iPhone 5
Re: Portable .NET
« Reply #42 on: June 22, 2011, 07:25:09 pm »
I really hope I'm not climbing down the ladder of respect.

Education is never achieved by wise men. it is only believed to have been achieved by fools

C0deH4cker

  • Hero Member
  • *****
  • Posts: 2849
  • Reputation: 129
  • I am leaving iNinjas. Contact me via email.
  • Badges:
  • iDevices: iPhone 4S 16gb Black (5.1.1), iPad 2 32gb White (5.0.1), iPod Touch 2G 8gb (4.2.1)
Re: Portable .NET
« Reply #43 on: June 22, 2011, 09:26:46 pm »
When you copy and pasted the code, it copied wrong. Im gonna upload the script so you can download it as is. Hold on...

LankAsif

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 2392
  • Reputation: 90
  • Forum pride 8)
  • Badges:
  • Computers: i7 with bits and pieces
  • iDevices: iPod Touch 1G (Basically storage for iNinja tools), iPhone 5
Re: Portable .NET
« Reply #44 on: June 22, 2011, 09:31:09 pm »
I copied what was ther and saved it as a .sh
then sshed it to my device. weird, but I will follow what you prescribe.

Education is never achieved by wise men. it is only believed to have been achieved by fools