RSA is vulnerable against a Chosen-Ciphertext attack. That is, say we want to break ciphertext y, we can use one of the ciphertext-plaintext pairs to break it.
How to break it:
choose an x0 and y0, where x0 and y0 is a plaintext-ciphertext pair that has been provided.
y1 = y0*y mod n y1 is another one of the 1000 ciphertexts given to the user that satisfies this criteria. x1 is the decryption of y1, which is also given, this means:
x1 = y1^d mod n (this has been given to us, we already know x1)
x1 = (y0*y)^d mod n x1 = y0^d * y^d mod n Ξ x0*x
x1*x0^-1 = x
x is the decryption of y.
This is of course dependent on whether or not y0*y mod n produces another ciphertext that we already have, and since we have only 1000 such pairs to work with, it is unlikely but not unfeasible to break. You just have to choose your pairs extremely carefully.
I'd also like to add that the size of n you're working with allows a factoring heuristic to find the prime factorization of n fairly quickly. Also, RSA is vulnerable to timing attacks, but that can be easily thwarted.
With added info: Without knowing n, d, or e, there is absolutely no information provided at all, which means guessing combinations of n, d, or e is as good as guessing the plaintext itself. To find n and e, there are at least 43,359,738,367 combinations of n to guess as well as all of the combinations e could be. It's not easy for someone even with 1000 ciphertext-plaintext pairs to be able to crack n and e.
